Skip to content

Instantly share code, notes, and snippets.

@pniederw
Created February 18, 2010 23:52
Show Gist options
  • Save pniederw/308248 to your computer and use it in GitHub Desktop.
Save pniederw/308248 to your computer and use it in GitHub Desktop.
public interface IRunListener {
void beforeSpec(SpecInfo spec);
void beforeFeature(FeatureInfo feature);
void beforeFirstIteration(int estimatedNumIterations);
void beforeIteration(Object[] args);
void afterIteration();
void afterLastIteration();
void afterFeature(FeatureInfo feature);
void afterSpec(SpecInfo spec);
void error(MethodInfo method, Throwable error, int runStatus);
void specSkipped(SpecInfo spec);
void featureSkipped(FeatureInfo feature);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment