Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is this possible in JUnit4?

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

...

}
share|improve this question
Have you tried running it with junit4? – bbaja42 Sep 26 '11 at 17:37
@bbaja42 I don't want to run this with junit4, I want to use the junit4 annotations for my tests and run all of them using a testsuite. – Fortega Sep 27 '11 at 7:36
An "actual" answer to this question would be nice. Somehow, Eclipse is able to accomplish this by clicking one little checkbox in the JUnit run configuration panel. – djangofan Dec 14 '12 at 23:43

2 Answers

up vote 9 down vote accepted

Here you can find a junit-lib by Johannes Link that 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...
share|improve this answer

In JUnit4 create a separate class AllTests and put the test classes in @Suite.SuiteClasses annotation:

package mypackage;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses( { MyClassTest.class })
public class AllTests {
}

Note, though, you test classes (e.g. MyClassTest) should be JUnit4 tests with proper annotations. You can read more on the difference between JUnit3 and JUnit4 in JUnit Reloaded article.

share|improve this answer
2  
This would mean I have to add all my classes manually to the @Suite.SuiteClasses... That's not really an option... – Fortega Sep 27 '11 at 7:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.