DefaultControllerTest.php 378 B

1234567891011121314151617
  1. <?php
  2. namespace DocumentBundle\Tests\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
  4. class DefaultControllerTest extends WebTestCase
  5. {
  6. public function testIndex()
  7. {
  8. $client = static::createClient();
  9. $crawler = $client->request('GET', '/');
  10. $this->assertContains('Hello World', $client->getResponse()->getContent());
  11. }
  12. }