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

au.com.origin.snapshots.junit4.JUnit4Config Maven / Gradle / Ivy

There is a newer version: 4.0.8
Show newest version
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