声纳规则:测试应包括断言,断言均衡未重新计算?

时间:2016-10-27 10:30:47

标签: java sonarqube

我有测试:

import org.junit.Assert;
import org.junit.Test;
....
@Test
public void testStdDevIsZeroWhenNoValues() {
    ContribPriceDiffCalculator priceDiffContrib = createPriceDiffContribWithoutEntries();
    Assert.assertEquals(0., priceDiffContrib.getStdDev(null, null), DELTA);
}

声纳给我提醒:测试应包括断言 - 在此测试用例中添加至少一个断言。

enter image description here

如果我的方法有断言,我不明白为什么我有这个警告?

声纳版本5.6.1 - LGPL v3

0 个答案:

没有答案