Skip to content

Instantly share code, notes, and snippets.

@tomjadams
Created July 31, 2008 01:41
Show Gist options
  • Save tomjadams/3380 to your computer and use it in GitHub Desktop.
Save tomjadams/3380 to your computer and use it in GitHub Desktop.
public final class SpecificationLifecycleImpl implements SpecificationLifecycle {
public <T extends Throwable> Either<T, ContextClass> createContext() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, Unit> resetMockery() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, Unit> wireActors() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, Unit> runBeforeSpecificationMethods() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, SpecificationResult> runSpecification() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, Unit> runAfterSpecificationMethods() {
throw new UnsupportedOperationException();
}
public <T extends Throwable> Either<T, Unit> verifyMocks() {
throw new UnsupportedOperationException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment