我写了一个套件:
beforeEach
其中package com;
import org.junit.extensions.cpsuite.ClasspathSuite;
import org.junit.runner.RunWith;
@RunWith(ClasspathSuite.class)
@ClasspathSuite.ClassnameFilters({"com.mycompany.*"})
@ClasspathSuite.IncludeJars(true)
public class AllTests {
}
是一个包,其中包含许多嵌套包和测试类。
我在com.mycompany.*
子文件夹中的项目中包含来自takari-cpsuite
的来源。
我让我的IDE将此类识别为套件,并在其附近显示一个图标以运行测试。
不幸的是,当我运行它时,我得到:
test
这里有什么不对?