Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testCase() |
||
14 | { |
||
15 | $tokenMock = $this->prophesize(TokenInterface::class); |
||
16 | $authenticationManager = new AuthenticationManager(); |
||
17 | |||
18 | $resolvedToken = $authenticationManager->authenticate($tokenMock->reveal()); |
||
19 | $this->assertSame($resolvedToken, $tokenMock->reveal()); |
||
20 | } |
||
21 | } |
||
22 |