| 1 | <?php |
||
| 7 | class DefaultControllerTest extends WebTestCase |
||
| 8 | { |
||
| 9 | public function testIndex() |
||
| 10 | { |
||
| 11 | $client = static::createClient(); |
||
| 12 | |||
| 13 | $crawler = $client->request('GET', '/'); |
||
| 14 | |||
| 15 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
| 16 | $this->assertContains('Welcome to Symfony', $crawler->filter('#container h1')->text()); |
||
| 17 | } |
||
| 18 | } |
||
| 19 |