0

假设我有一个XElement对象,它代表 Xml

<modification name="givenName" operation="add" xmlns="urn:oasis:names:tc:DSML:2:0:core">
    <value>Changed name</value>
    <child id="abc">Some dummy value</child>
</modification>

如何测试<value>元素的值是“更改名称”,<child>元素具有属性id“abc”,值“一些虚拟值”?

4

1 回答 1

1
element.Should().HaveElement("value").Which.Should().HaveValue("Changed name");
element.Should().HaveElement("child").Which.Should().HaveAttribute("id", "abc").And.HaveValue("Some dummy value");
于 2016-01-06T18:05:43.860 回答