function assertXmlStringEqualsXmlFile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertXmlStringEqualsXmlFile()
Asserts that two XML documents are 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 1705
Code
function assertXmlStringEqualsXmlFile($expectedFile, $actualXml, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertXmlStringEqualsXmlFile', func_get_args());
}