Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testOnAuthenticationFailure() |
||
26 | { |
||
27 | $this->expectException(AccessDeniedHttpException::class); |
||
28 | |||
29 | $authenticationFailureHandler = new AuthenticationFailureHandler(); |
||
30 | $authenticationFailureHandler->onAuthenticationFailure(new Request(), new AuthenticationException()); |
||
31 | } |
||
32 | } |
||
33 |