_generated\TestGuyActions::cantSeeResponseCodeIs PHP Method

cantSeeResponseCodeIs() public method

Checks that response code is equal to value provided. php dontSeeResponseCodeIs(200); recommended \Codeception\Util\HttpCode $I->dontSeeResponseCodeIs(\Codeception\Util\HttpCode::OK);
See also: Codeception\Lib\InnerBrowser::dontSeeResponseCodeIs()
public cantSeeResponseCodeIs ( $code )
$code Conditional Assertion: Test won't be stopped on fail
    public function cantSeeResponseCodeIs($code)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeResponseCodeIs', func_get_args()));
    }
TestGuyActions