_generated\AcceptanceTesterActions::cantSeeResponseCodeIs PHP Method

cantSeeResponseCodeIs() public method

Checks that response code is not equal to provided value.
See also: Codeception\Module\REST::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()));
    }
AcceptanceTesterActions