Phalcon\Test\FunctionalTestCase::assertResponseContentContains PHP Method

assertResponseContentContains() public method

Assert response content contains string
public assertResponseContentContains ( string $string )
$string string
    public function assertResponseContentContains($string)
    {
        $this->assertContains($string, $this->getContent());
    }