1234567891011121314151617 |
- <?php
- namespace Acme\DemoBundle\Tests\Controller;
- use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
- class DemoControllerTest extends WebTestCase
- {
- public function testIndex()
- {
- $client = static::createClient();
- $crawler = $client->request('GET', '/demo/hello/Fabien');
- $this->assertGreaterThan(0, $crawler->filter('html:contains("Hello Fabien")')->count());
- }
- }
|