| changeset 2 | 806e57d67020 |
| 1:8cbd576d6b88 | 2:806e57d67020 |
|---|---|
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 } |