org.junit.runners.parameterized.TestWithParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactor-junit4 Show documentation
Show all versions of reactor-junit4 Show documentation
JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.
The newest version!
package org.junit.runners.parameterized;
import static java.util.Collections.unmodifiableList;
import java.util.ArrayList;
import java.util.List;
import org.junit.runners.model.TestClass;
/**
* A {@code TestWithParameters} keeps the data together that are needed for
* creating a runner for a single data set of a parameterized test. It has a
* name, the test class and a list of parameters.
*
* @since 4.12
*/
public class TestWithParameters {
private final String name;
private final TestClass testClass;
private final List