org.junit.runners.AllTests Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
The newest version!
package org.junit.runners;
import org.junit.internal.runners.SuiteMethod;
/**
* Runner for use with JUnit 3.8.x-style AllTests classes
* (those that only implement a static suite()
* method). For example:
*
* @RunWith(AllTests.class)
* public class ProductTests {
* public static junit.framework.Test suite() {
* ...
* }
* }
*
*
* @since 4.0
*/
public class AllTests extends SuiteMethod {
/**
* Only called reflectively. Do not use programmatically.
*/
public AllTests(Class> klass) throws Throwable {
super(klass);
}
}