You are here

function assertXmlFileNotEqualsXmlFile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertXmlFileNotEqualsXmlFile()

Asserts that two XML files are not equal.

@since Method available since Release 3.1.0

Parameters

string $expectedFile:

string $actualFile:

string $message:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1689

Code

function assertXmlFileNotEqualsXmlFile($expectedFile, $actualFile, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertXmlFileNotEqualsXmlFile', func_get_args());
}