_generated\AcceptanceTesterActions::dontSeeResponseMatchesJsonType PHP Method

dontSeeResponseMatchesJsonType() public method

Opposite to seeResponseMatchesJsonType.
See also: seeResponseMatchesJsonType
See also: Codeception\Module\REST::dontSeeResponseMatchesJsonType()
public dontSeeResponseMatchesJsonType ( $jsonType, null $jsonPath = null )
$jsonType jsonType structure
$jsonPath null optionally set specific path to structure with JsonPath
    public function dontSeeResponseMatchesJsonType($jsonType, $jsonPath = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeResponseMatchesJsonType', func_get_args()));
    }
AcceptanceTesterActions