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

junit.framework.JUnit4TestCaseFacade Maven / Gradle / Ivy

Go to download

JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.

There is a newer version: 4.13.2
Show 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy