1
StringWriter result = runMethod.getOutput();
String expected = "<3>textValue</3>"
assertTrue("Should have contained the required result", result.toString().contains(expected));
爲什麼Junit在此處返回錯誤?Junit在assertTrue字符串比較中返回錯誤
是什麼的System.out.println(result.toString())給你? – emeraldjava
一大塊文字和期望的字符串包含在其中。 – Pan
當我打印出System.out.println(result.toString()。contains)時,輸出「true」 – Pan