La función assertXmlStringNotEqualsXmlFile() es una función integrada en PHPUnit y se utiliza para afirmar si el contenido del archivo XML real no es igual a la string XML esperada. Esta afirmación devolverá verdadero en el caso de que la string XML esperada no sea la misma que el contenido real del archivo XML; de lo contrario, devolverá falso. En caso de que sea cierto, el caso de prueba afirmado se aprobó; de lo contrario, el caso de prueba falló.
Sintaxis:
assertXmlStringNotEqualsXmlFile(string $expectedFile, string $actualFile[, 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.
- $actualXmlFile: este parámetro es de cualquier tipo que represente la ruta del archivo 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 assertXmlstringNotEqualsXmlFile() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertXmlStringNotEqualsXmlFile() { $expectedxmlString = '<foo><baz></baz></foo>'; $actualxmlFilePath = '/home/lovely/Documents/php/actual.xml'; // Assert function to test whether given // expected xml string is not equal to actual xml file path $this->assertXmlStringNotEqualsXmlFile( $actualxmlFilePath, $expectedxmlString, "actual xml file path is not equal to expected xml string" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 88 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testPositiveTestcaseForassertXmlFileNotEqualsXmlFile actual xml file path is equal to expected xml string Failed asserting that DOMDocument Object &00000000619c324c000000000e19116f () is not equal to DOMDocument Object &00000000619c324b000000000e19116f (). /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 testPositiveTestcaseForassertXmlStringNotEqualsXmlFile() { $expectedxmlString = '<foo><baza></baza></foo>'; $actualxmlFilePath = '/home/lovely/Documents/php/actual.xml'; // Assert function to test whether given // expected xml string is not equal to actual xml file path $this->assertXmlStringNotEqualsXmlFile( $actualxmlFilePath, $expectedxmlString, "actual xml file path is not 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)
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