我有一个方法,我正在测试输出XML。我的测试中有以下断言(名称因NDA而更改):
// arrange
$service = new Service($entityManager);
// act
$results = $service->doThing();
$xml = simplexml_load_string($results);
// assert
$this->assertContains('Bitcoin', $xml->item[0]->paymentStatus);
$this->assertContains('Credit Card', $xml->item[1]->paymentStatus);
在这两种情况下, paymentStatus
都是一个字符串。一个是简单的:
<paymentStatus>Paid with Bitcoin</paymentStatus>
另一个是
<paymentStatus>Paid with Credit Card</paymentStatus>
由于paymentStatus
包含一个字符串,应该被认为是可遍历的,对吗?那么为什么它不能“看到”这些字符串中的比特币/信用卡部分呢?我手动验证了输出。具有这些值的字符串是我的结果XML的一部分。