当我遇到这个问题时,我正在玩Gson和JSONAssert库。
我有以下函数来比较两个整数:
private static void runCompareInts(int source, int target){
JSONCompareResult result = JSONCompare.compareJSON(new Gson().toJson(source),
new Gson().toJson(target),
JSONCompareMode.NON_EXTENSIBLE);
if (CollectionUtils.isEmpty(result.getFieldFailures())) {
System.out.println("Objects are same.");
} else {
System.out.println("Objects are not the same. Difference: " + result);
}
}
当我运行runCompareInts(1, 2)
时,我得到"Objects are same."
作为结果,情况应该不是这样。
我发现new Gson().toJson(1)
返回字符串"1"
,这是一个有效的JSON字符串,因此比较应该正确进行并进入else
块。
使用JSONAssert.assertNotEquals("1", "2", true)
比较整数不会导致任何异常。这意味着Gson转换值不是问题。
有谁能告诉我runCompareInts()
功能的错误是什么?谢谢。
编辑:JSONAssert.assertNotEquals(new Gson().toJson(source), new Gson().toJson(target), true)
也可以。
答案 0 :(得分:0)
if block中使用result.isFailureOnField()
。
我在jsonassert库中看到了消息的问题,compareJson(final JSONString expected, final JSONString actual)
类的方法JSONCompare
在失败时返回空错误消息。