0

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

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

0 回答 0