PHPUnit assertXmlStringEqualsXmlString()函数
assertXmlStringEqualsXmlString()函数是 PHPUnit 中的内置函数,用于断言实际的 XML字符串是否等于预期的 XML字符串。如果预期的 XML字符串与实际的 XML字符串相同,则此断言将返回 true,否则返回 false。如果为真,则断言的测试用例通过,否则测试用例失败。
句法:
assertXmlStringEqualsXmlString(string $expectedXml,
string $actualXml[, string $message = ''])
参数:此函数接受三个参数,如上所述,如下所述:
- $expectedXmlString:这个参数是代表期望的 XML字符串的任何类型。
- $actualXmlString:这个参数是代表实际 XML 字符串的任何类型。
- $message:此参数采用字符串值。当测试用例失败时,此字符串消息显示为错误消息。
下面的例子说明了 PHPUnit 中的 assertXmlStringEqualsXmlString()函数:
示例 1:
PHP
';
$actualxmlString = ' ';
// Assert function to test whether given
// expected xml string is equal to actual xml string
$this->assertXmlStringEqualsXmlString(
$actualxmlString,
$expectedxmlString,
"actual xml string is equal to expected xml string"
);
}
}
?>
PHP
';
$actualxmlString = ' ';
// Assert function to test whether given
// expected xml string is equal to actual xml string
$this->assertXmlStringEqualsXmlString(
$actualxmlString,
$expectedxmlString,
"actual xml string is equal to expected xml string"
);
}
}
?>
输出:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors.
F 1 / 1 (100%)
Time: 87 ms, Memory: 10.00 MB
There was 1 failure:
1) GeeksPhpunitTestCase::testPositiveTestcaseForassertXmlFileNotEqualsXmlFile
actual xml string is equal to expected xml string
Failed asserting that two DOM documents are equal.
--- Expected
+++ Actual
@@ @@
-
+
/home/lovely/Documents/php/test.php:16
FAILURES!
Tests: 1, Assertions: 1, Failures: 1.
示例 2:
PHP
';
$actualxmlString = ' ';
// Assert function to test whether given
// expected xml string is equal to actual xml string
$this->assertXmlStringEqualsXmlString(
$actualxmlString,
$expectedxmlString,
"actual xml string is equal to expected xml string"
);
}
}
?>
输出:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors.
. 1 / 1 (100%)
Time: 87 ms, Memory: 10.00 MB
OK (1 test, 1 assertion)
参考: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertxmlstringequalsxmlstring