DemoControllerTest.php 406 B

1234567891011121314151617
  1. <?php
  2. namespace Acme\DemoBundle\Tests\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
  4. class DemoControllerTest extends WebTestCase
  5. {
  6. public function testIndex()
  7. {
  8. $client = static::createClient();
  9. $crawler = $client->request('GET', '/demo/hello/Fabien');
  10. $this->assertGreaterThan(0, $crawler->filter('html:contains("Hello Fabien")')->count());
  11. }
  12. }