_generated\AcceptanceTesterActions::cantSeeXmlResponseIncludes PHP Method

cantSeeXmlResponseIncludes() public method

Checks XML response does not include provided XML. Comparison is done by canonicalizing both xml`s. Parameter can be passed either as XmlBuilder, DOMDocument, DOMNode, XML string, or array (if no attributes).
See also: Codeception\Module\REST::dontSeeXmlResponseIncludes()
public cantSeeXmlResponseIncludes ( $xml )
$xml
    public function cantSeeXmlResponseIncludes($xml)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeXmlResponseIncludes', func_get_args()));
    }
AcceptanceTesterActions