au.com.origin.snapshots.junit4.JUnit4Config Maven / Gradle / Ivy
package au.com.origin.snapshots.junit4;
import au.com.origin.snapshots.SnapshotConfig;
import java.lang.reflect.Method;
public class JUnit4Config implements SnapshotConfig {
@Override
public Class> getTestClass() {
throw new RuntimeException("You forgot to implement the @ClassRule for SnapshotClassRule");
}
@Override
public Method getTestMethod(Class> testClass) {
throw new RuntimeException("You forgot to implement the @Rule for SnapshotRule");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy