_generated\AcceptanceTesterActions::cantSeeXmlResponseMatchesXpath PHP Метод

cantSeeXmlResponseMatchesXpath() публичный метод

Checks wheather XML response does not match XPath php dontSeeXmlResponseMatchesXpath('//root/user[@id=1]');
См. также: Codeception\Module\REST::dontSeeXmlResponseMatchesXpath()
public cantSeeXmlResponseMatchesXpath ( $xpath )
$xpath Conditional Assertion: Test won't be stopped on fail
    public function cantSeeXmlResponseMatchesXpath($xpath)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeXmlResponseMatchesXpath', func_get_args()));
    }
AcceptanceTesterActions