Junit静态导入assertTrue失败但是Assert.assertTrue传递了吗?

时间:2017-11-09 07:00:04

标签: java spring unit-testing junit static-import

我有一个单元测试方法如下:

 @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;

0 个答案:

没有答案