| Total Complexity | 5 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class U2fAuthenticationRequiredEventTest extends TestCase |
||
| 19 | { |
||
| 20 | private $event; |
||
| 21 | private $user; |
||
| 22 | |||
| 23 | public function setUp() |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testName() |
||
| 31 | { |
||
| 32 | $this->assertEquals('u2f.authentication.required', U2fAuthenticationRequiredEvent::getName()); |
||
| 33 | $this->assertEquals('u2f.authentication.required', $this->event->getName()); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function testUser() |
||
| 37 | { |
||
| 38 | $this->assertEquals($this->user, $this->event->getUser()); |
||
| 39 | } |
||
| 40 | |||
| 41 | public function testMustAuthenticate() |
||
| 44 | } |
||
| 45 | |||
| 46 | public function testAbort() |
||
| 50 | } |
||
| 51 | } |
||
| 52 |