for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PiouPiou\RibsAdminBundle\Tests\Controller;
use Symfony\Bundle\RibsAdminBundle\Test\WebTestCase;
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
$client = static::createClient();
$crawler = $client->request('GET', '/');
$crawler
$this->assertContains('Hello World', $client->getResponse()->getContent());
}