All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.junittoolbox.ParallelParameterized Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
package com.googlecode.junittoolbox;

import org.junit.runners.Parameterized;

/**
 * An extension of the JUnit {@link Parameterized}
 * runner, which executes the tests for each parameter set
 * concurrently.
 * 

You can specify the maximum number of parallel test * threads using the system property maxParallelTestThreads. * If this system property is not specified, the maximum * number of test threads will be the number of * {@link Runtime#availableProcessors() available processors}. */ public class ParallelParameterized extends Parameterized { public ParallelParameterized(Class klass) throws Throwable { super(klass); setScheduler(new ParallelScheduler()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy