| author | ymh <ymh.work@gmail.com> |
| Wed, 28 Sep 2011 17:45:50 +0200 | |
| changeset 2 | 806e57d67020 |
| permissions | -rw-r--r-- |
| 2 | 1 |
<?php |
2 |
||
3 |
namespace Company\BaseBundle\Tests\Controller; |
|
4 |
||
5 |
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; |
|
6 |
||
7 |
class DefaultControllerTest extends WebTestCase |
|
8 |
{ |
|
9 |
public function testIndex() |
|
10 |
{ |
|
11 |
$client = static::createClient(); |
|
12 |
||
13 |
$crawler = $client->request('GET', '/hello/Fabien'); |
|
14 |
||
15 |
$this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0); |
|
16 |
} |
|
17 |
} |