org.junit.rules.TestRule 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.rules;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
public interface TestRule {
Statement apply(Statement var1, Description var2);
}