_generated\AcceptanceTesterActions::cantSeeResponseMatchesJsonType PHP Method

cantSeeResponseMatchesJsonType() public method

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