DefaultControllerTest.php 401B

123456789101112131415161718
  1. <?php
  2. namespace Muzich\AdminBundle\Tests\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
  4. class DefaultControllerTest extends WebTestCase
  5. {
  6. public function testIndex()
  7. {
  8. $client = static::createClient();
  9. $crawler = $client->request('GET', '/hello/Fabien');
  10. $this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0);
  11. }
  12. }