| author | ymh <ymh.work@gmail.com> |
| Mon, 17 Oct 2011 18:42:56 +0200 | |
| changeset 10 | 6e8bd1081c8a |
| 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); } }