我正在使用classpath suite library自动运行项目中的所有测试,效果很好。
@RunWith(ClasspathSuite.class)
@SuiteTypes({RUN_WITH_CLASSES, TEST_CLASSES, JUNIT38_TEST_CLASSES})
@ClassnameFilters({"com.foo.bar.*"})
public class AllTests {
}
但是,每次我运行AllTests
时都会收到此错误:
java.lang.Exception: class 'com.foo.bar.AllTests' (possibly indirectly) contains itself as a SuiteClass
任何想法如何摆脱这个?
是的,我读过JUnit: (possibly indirectly) contains itself as a SuiteClass但没有找到答案,因为无论如何我都没有从AllTests
继承。
答案 0 :(得分:3)
只需将您的AllTests
课程移至包com.foo
。
您选择了SuiteTypes=RUN_WITH_CLASSES
(并将目标包设置为com.foo.bar
),因此AllTests
一遍又一遍地运行AllTests
。