AppBundle\Tests\Controller\DefaultControllerTest::testIndex PHP Method

testIndex() public method

public testIndex ( )
    public function testIndex()
    {
        $client = static::createClient();
        $crawler = $client->request('GET', '/');
        $this->assertContains('My Symfony Application', $client->getResponse()->getContent());
    }
DefaultControllerTest