📜  PHPUnit assertXmlStringNotEqualsXmlString()函数

📅  最后修改于: 2022-05-13 01:56:39.625000             🧑  作者: Mango

PHPUnit assertXmlStringNotEqualsXmlString()函数

assertXmlStringNotEqualsXmlString()函数是 PHPUnit 中的内置函数,用于断言实际的 XML字符串是否不等于预期的 XML字符串。如果预期的 XML字符串与实际的 XML字符串不同,则此断言将返回 true,否则返回 false。如果为真,则断言的测试用例通过,否则测试用例失败。

句法:

assertXmlStringNotEqualsXmlString(string $expectedXml, 
string $actualXml[, string $message = ''])

参数:此函数接受三个参数,如上所述,如下所述:

  • $expectedXmlString:这个参数是任何代表预期 Xml字符串的类型。
  • $actualXmlString:这个参数是代表实际 Xml 字符串的任何类型。
  • $message:此参数采用字符串值。当测试用例失败时,此字符串消息显示为错误消息。

下面的示例说明了 PHPUnit 中的 assertXmlStringNotEqualsXmlString()函数:

示例 1:

PHP
'; 
        $actualxmlString    =  '';
        // Assert function to test whether given 
        // expected xml string is not equal to actual xml string
        $this->assertXmlStringNotEqualsXmlString(
            $actualxmlString,
            $expectedxmlString,
            "actual xml string is not equal to expected xml string"
        ); 
    } 
} 
    
?>


PHP
'; 
        $actualxmlString    =  '';
        // Assert function to test whether given 
        // expected xml string is not equal to actual xml string
        $this->assertXmlStringNotEqualsXmlString(
            $actualxmlString,
            $expectedxmlString,
            "actual xml string is not equal to expected xml string"
        ); 
    } 
} 
    
?>


输出:

PHPUnit 8.5.8 by Sebastian Bergmann and contributors.

F                                                                1 / 1 (100%)

Time: 89 ms, Memory: 10.00 MB

There was 1 failure:

1) GeeksPhpunitTestCase::testPositiveTestcaseForassertXmlFileNotEqualsXmlFile
actual xml string is equal to expected xml string
Failed asserting that DOMDocument Object &000000007c4380e1000000004a99fb25 
() is not equal to DOMDocument Object &000000007c4380e6000000004a99fb25 ().

/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 not equal to actual xml string
        $this->assertXmlStringNotEqualsXmlString(
            $actualxmlString,
            $expectedxmlString,
            "actual xml string is not 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)