| author | ymh <ymh.work@gmail.com> |
| Tue, 04 Oct 2011 10:12:08 +0200 | |
| changeset 5 | d8cb31543a3f |
| parent 2 | 806e57d67020 |
| permissions | -rw-r--r-- |
<?php namespace Company\BaseBundle\Tests\Controller; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class DefaultControllerTest extends WebTestCase { public function testIndex() { $client = static::createClient(); $crawler = $client->request('GET', '/hello/Fabien'); $this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0); } }