org.junit.runners.model.Statement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-junit4-mock Show documentation
Show all versions of quarkus-junit4-mock Show documentation
Module with some empty JUnit4 classes to allow Testcontainers
to run without needing to include JUnit4 on the class path
package org.junit.runners.model;
public abstract class Statement {
public Statement() {
}
public abstract void evaluate() throws Throwable;
}