You are here

function assertXmlStringEqualsXmlString in Zircon Profile 8

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

Asserts that two XML documents are 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 1721

Code

function assertXmlStringEqualsXmlString($expectedXml, $actualXml, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertXmlStringEqualsXmlString', func_get_args());
}