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 junit4osgi-bundle Show documentation
Show all versions of junit4osgi-bundle Show documentation
This bundle provides the JUnit library in as an OSGi bundle.
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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy