App\Test\TestCase\Controller\PagesControllerTest::testDisplay PHP 메소드

testDisplay() 공개 메소드

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