App\Test\TestCase\Controller\PagesControllerTest::testDisplay PHP Method

testDisplay() public method

testDisplay method
public testDisplay ( ) : void
return void
    public function testDisplay()
    {
        $this->get('/pages/home');
        $this->assertResponseOk();
        $this->assertResponseContains('CakePHP');
        $this->assertResponseContains('<html>');
    }