Class ParallelSuite

  • All Implemented Interfaces:
    org.junit.runner.Describable, org.junit.runner.manipulation.Filterable, org.junit.runner.manipulation.Orderable, org.junit.runner.manipulation.Sortable

    public class ParallelSuite
    extends org.junit.runners.Suite
    Junit suite for running test classes in parallel. To be used as an annotation to an empty test class:
     @RunWith(ParallelSuite.class)
     @Suite.SuiteClasses({TestClass1.class, TestClass2.class})
     public class TestClassSuiteIT {
     }
     
    • Nested Class Summary

      • Nested classes/interfaces inherited from class org.junit.runners.Suite

        org.junit.runners.Suite.SuiteClasses
    • Constructor Summary

      Constructors 
      Constructor Description
      ParallelSuite​(Class<?> klass, org.junit.runners.model.RunnerBuilder builder)  
    • Method Summary

      • Methods inherited from class org.junit.runners.Suite

        describeChild, emptySuite, getChildren, runChild
      • Methods inherited from class org.junit.runners.ParentRunner

        childrenInvoker, classBlock, classRules, collectInitializationErrors, createTestClass, filter, getDescription, getName, getRunnerAnnotations, getTestClass, isIgnored, order, run, runLeaf, setScheduler, sort, validatePublicVoidNoArgMethods, withAfterClasses, withBeforeClasses, withInterruptIsolation
      • Methods inherited from class org.junit.runner.Runner

        testCount
    • Constructor Detail

      • ParallelSuite

        public ParallelSuite​(Class<?> klass,
                             org.junit.runners.model.RunnerBuilder builder)
                      throws org.junit.runners.model.InitializationError
        Throws:
        org.junit.runners.model.InitializationError