junit.framework.JUnit4TestCaseFacade 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 junit.framework;
import org.junit.runner.Describable;
import org.junit.runner.Description;
public class JUnit4TestCaseFacade implements Test, Describable {
private final Description fDescription;
JUnit4TestCaseFacade(Description description) {
fDescription = description;
}
@Override
public String toString() {
return getDescription().toString();
}
public int countTestCases() {
return 1;
}
public void run(TestResult result) {
throw new RuntimeException(
"This test stub created only for informational purposes.");
}
public Description getDescription() {
return fDescription;
}
}