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