| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | public function testIndexHttp200() |
||
| 8 | { |
||
| 9 | $response = $this->call($this->createRequest('GET', '/')); |
||
| 10 | |||
| 11 | $this->assertEquals(200, $response->getStatusCode()); |
||
| 12 | |||
| 13 | $response = $this->call($this->createRequest('GET', '/about')); |
||
| 14 | |||
| 15 | $this->assertEquals(200, $response->getStatusCode()); |
||
| 16 | } |
||
| 17 | |||
| 32 |