for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class ExampleTest extends TestCase {
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$crawler = $this->client->request('GET', '/');
$crawler
$this->assertRedirectedTo('login');
}