我刚刚迁移到JUnit的较新版本,其中删除了Assert.assertNotEquals,因此现在我正努力重写测试。
原始代码:
Double givenLongitude = new Double(13);
assertNotEquals(givenLongitude, extract("position.longitude", eventDataJson, Float.class), 0.01d);
其中extract方法是在这种情况下返回Float的通用方法。
我的问题是我想这样使用Assert.assertFalse
Double givenLongitude = new Double(13);
assertFalse(givenLongitude.equals(extract("position.longitude", eventDataJson, Float.class)), 0.01d);
但是由于assertFalse没有delta值,我不确定如何在不丢失比较中delta值的情况下完成此操作?有什么建议么?
最佳答案
升级到4.11版。在此版本中重新引入了assertNotEquals方法。