我在以下代码中有问题。

String xml1="<Akash><status>COMPLETE</status>"
                    +"<startedTime>23</startedTime></Akash>";
String xml2="<Akash><status>COMPLETE</status><startedTime></startedTime></Akash>";

Diff diff = new Diff(xml1,xml2);
diff.overrideElementQualifier(new ElementNameAndTextQualifier());
assertTrue("XML similar " + diff.toString(), diff.similar());


当我不这样做时,请在上述Java代码中写以下行。

 XMLUnit.setIgnoreWhitespace(true)


断言在“开始时间”附近给出一个异常,该节点的值不存在,这正是我想要的,因为不存在值23。但是,当我在实例化Diff类之前将此行(setIgnoreWhitespace)添加到代码中时,尽管具有相同的xml,但此代码仍通过了断言测试。

我真的不明白这里正在发生什么。请帮我。

注意:我需要XMLUnit.setIgnoreWhitespace(true)来等同于两个xml,它们的某些节点之间有空格,否则代码会产生其他错误。

最佳答案

public static void main(String[] args) throws Exception {
    String xml1="<Akash><status>COMPLETE</status>"
        +"<startedTime>23</startedTime></Akash>";
    String xml2="<Akash><status>COMPLETE</status><startedTime></startedTime></Akash>";

    XMLUnit.setIgnoreWhitespace(true);
    Diff diff = new Diff(xml1,xml2);
    diff.overrideElementQualifier(new ElementNameAndTextQualifier());
    assertTrue("XML similar " + diff.toString(), diff.similar());
}


为我抛出一个异常(XMLUnit 1.6)。

Exception in thread "main" java.lang.AssertionError: XML similar org.custommonkey.xmlunit.Diff
[different] Expected presence of child nodes to be 'true' but was 'false' - comparing <startedTime...> at /Akash[1]/startedTime[1] to <startedTime...> at /Akash[1]/startedTime[1]

09-29 22:12