JUnit4 使用测试套件运行特定包中的所有测试

2022-09-01 23:16:19

这在JUnit4中可能吗?

在JUnit3中,我会执行以下操作:

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
     }
  }

...

}

答案 1

Takari-cpsuite(最初由Johannes Link开发)提供了一个适合您需求的classpath套件。它允许通过正则表达式过滤类路径中的类,例如:

import org.junit.extensions.cpsuite.ClasspathSuite.*;
...
@ClassnameFilters({"mytests.*", ".*Test"})
public class MySuite...

答案 2

您可以使用JUnitToolBox:

@RunWith(WildcardPatternSuite.class)
@SuiteClasses("**/*Test.class")
public class MySuite {
}

Maven config:

<dependency>
<groupId>com.googlecode.junit-toolbox</groupId>
<artifactId>junit-toolbox</artifactId>
<version>1.5</version>
</dependency>

有关更多详细信息,请参阅 https://code.google.com/p/junit-toolbox/


推荐