| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function testIndexActionCanBeAccessed() |
||
| 18 | { |
||
| 19 | $this->dispatch('/'); |
||
| 20 | $this->assertResponseStatusCode(200); |
||
| 21 | |||
| 22 | $this->assertModuleName('Application'); |
||
| 23 | $this->assertControllerName('Application\Controller\Index'); |
||
| 24 | $this->assertControllerClass('IndexController'); |
||
| 25 | $this->assertMatchedRouteName('home'); |
||
| 26 | } |
||
| 27 | } |