Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testStart() |
||
14 | { |
||
15 | $handler = new MethodAuthenticationHandler(); |
||
16 | |||
17 | /** @var StoreInterface|PHPUnit_Framework_MockObject_MockObject $store */ |
||
18 | $store = $this->createMock(StoreInterface::class); |
||
19 | $store->expects($this->once())->method('setState'); |
||
20 | |||
21 | $this->assertArrayHasKey('numbers', $handler->start($store)); |
||
22 | } |
||
41 |