_generated\AcceptanceTesterActions::canSeeResponseIsJson PHP Method

canSeeResponseIsJson() public method

Checks whether last response was valid JSON. This is done with json_last_error function.
See also: Codeception\Module\REST::seeResponseIsJson()
    public function canSeeResponseIsJson()
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResponseIsJson', func_get_args()));
    }
AcceptanceTesterActions