La función assertXmlStringEqualsXmlString() es una función incorporada en PHPUnit y se usa para afirmar si la string XML real es igual a la string XML esperada o no. Esta aserción devolverá verdadero en el caso de que la string XML esperada sea la misma que la string XML real; de lo contrario, devuelve falso. En caso de que sea cierto, el caso de prueba afirmado se aprobó; de lo contrario, el caso de prueba falló.
Sintaxis:
assertXmlStringEqualsXmlString(string $expectedXml, string $actualXml[, string $message = ''])
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- $expectedXmlString: este parámetro es de cualquier tipo que represente la string XML esperada.
- $actualXmlString: este parámetro es de cualquier tipo que represente la string XML real.
- $mensaje: este parámetro toma un valor de string. Cuando el caso de prueba falló, este mensaje de string se mostró como un mensaje de error.
Los siguientes ejemplos ilustran la función assertXmlStringEqualsXmlString() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertXmlStringEqualsXmlString() { $expectedxmlString = '<foo><bazx></bazx></foo>'; $actualxmlString = '<foo><baz></baz></foo>'; // 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" ); } } ?>
Producción:
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 @@ @@ <?xml version="1.0"?> <foo> - <baz/> + <bazx/> </foo> /home/lovely/Documents/php/test.php:16 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Ejemplo 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertXmlStringEqualsXmlString() { $expectedxmlString = '<foo><baz></baz></foo>'; $actualxmlString = '<foo><baz></baz></foo>'; // 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" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 87 ms, Memory: 10.00 MB OK (1 test, 1 assertion)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertxmlstringequalsxmlstring
Publicación traducida automáticamente
Artículo escrito por shubham_singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA