for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Tests\Controller;
use AppBundle\Tests\TestBaseWeb;
class DefaultControllerTest extends TestBaseWeb
{
public function testIndex()
$client = static::createClient();
$client->request('GET', '/');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
}