Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function testIndex() |
||
10 | { |
||
11 | $client = static::createClient(); |
||
12 | |||
13 | $crawler = $client->request('GET', '/psr'); |
||
14 | |||
15 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
16 | $this->assertContains('Priporočila PHP standardov', $crawler->filter('h1')->text()); |
||
17 | } |
||
18 | |||
28 |