Tests/Controller/DefaultControllerTest.php
changeset 1 06a22ff5d58d
equal deleted inserted replaced
0:0354584a4d61 1:06a22ff5d58d
       
     1 <?php
       
     2 
       
     3 namespace IRI\Bundle\WikiTagBundle\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 }