Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XMLUnit 2 中有没有办法让这两个文档返回相同(或相似)?我可以做一些预处理来获取子节点,但我想看看这是否可以直接用 XMLUnit 完成。
文件1:
<a><b><c>test</c></b></a>
文件2:
<c>test</c>
不,XMLUnit 期望得到它应该比较的树的根。一旦你选择了子节点,你就可以使用Input.fromNode或类似的方法——但你知道这一点。
Input.fromNode
扩展输入构建器或创建包装器以通过 XPath 或类似方式选择“真正的根”并不难Source,但目前还没有内置的解决方案。
Source