_generated\FunctionalTesterActions::canSeeResponseCodeIs PHP Method

canSeeResponseCodeIs() public method

Checks that response code is equal to value provided.
See also: Codeception\Lib\InnerBrowser::seeResponseCodeIs()
public canSeeResponseCodeIs ( $code ) : mixed
$code
return mixed Conditional Assertion: Test won't be stopped on fail
    public function canSeeResponseCodeIs($code)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResponseCodeIs', func_get_args()));
    }
FunctionalTesterActions