我有一个单元测试方法如下:
@Test
public void someTest() throws Exception {
/* Some code here*/
List <SomeClass> someClassList = someRepository.findBySomething(param);
assertTrue("List should not be empty", !someClassList.isEmpty());
// Assert.assertTrue("List should not be empty", !someClassList.isEmpty());
}
上述测试失败。
但是,如果我评论静态导入断言assertTrue
并取消对正常断言Assert.assertTrue
的评论,它就会通过。
我只添加了相关的代码。如果需要更多信息,请告诉我。
上述行为可能是什么原因?
修改
以下是我的进口商品:
import org.junit.Assert;
import static org.junit.Assert.assertTrue;