function assertXmlStringNotEqualsXmlString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertXmlStringNotEqualsXmlString()
Asserts that two XML documents are not equal.
@since Method available since Release 3.1.0
Parameters
string $expectedXml:
string $actualXml:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1753
Code
function assertXmlStringNotEqualsXmlString($expectedXml, $actualXml, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertXmlStringNotEqualsXmlString', func_get_args());
}