| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function testIndexActionCanBeAccessed() |
||
| 27 | { |
||
| 28 | $this->dispatch('/'); |
||
| 29 | $this->assertResponseStatusCode(200); |
||
| 30 | |||
| 31 | $this->assertModuleName('Application'); |
||
| 32 | $this->assertControllerName('Application\Controller\Index'); |
||
| 33 | $this->assertControllerClass('IndexController'); |
||
| 34 | $this->assertMatchedRouteName('home'); |
||
| 35 | } |
||
| 36 | } |