Junit中对double类型进行assert对比
问题抛出在Junit测试中使用到了将double类型的数据进行比较,但是出现以下错误: 报错信息: The method assertEquals(double, double) from the type Assert is deprecated问题解决Junit中没有assertEquals(double,double)的方法。因为double值是允许误差的。 所以要...