本文介绍了JUnit4使用testsuite在特定包中运行所有测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这在JUnit4中是否可行?
Is this possible in JUnit4?
在JUnit3中,我会执行以下操作:
In JUnit3, I would do the following:
public class MyTestSuite {
public static Test suite() throws Exception {
doBeforeActions();
try {
TestSuite testSuite = new TestSuite();
for(Class clazz : getAllClassesInPackage("com.mypackage")){
testSuite.addTestSuite(clazz);
}
return testSuite;
} finally {
doAfterActions
}
}
...
}
推荐答案
(最初由 Johannes Link )提供了一个适合您需求的类路径套件。
它允许通过正则表达式过滤类路径中的类:
The takari-cpsuite (originally developed by Johannes Link) offers a classpath-suite which should fit your needs.It allows filtering of classes in the Classpath by regular expressions like:
import org.junit.extensions.cpsuite.ClasspathSuite.*;
...
@ClassnameFilters({"mytests.*", ".*Test"})
public class MySuite...
这篇关于JUnit4使用testsuite在特定包中运行所有测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!