Skip to content

Instantly share code, notes, and snippets.

@patrykpoborca
Created October 29, 2015 15:00
Show Gist options
  • Save patrykpoborca/e8101f6b39d60f98be5f to your computer and use it in GitHub Desktop.
Save patrykpoborca/e8101f6b39d60f98be5f to your computer and use it in GitHub Desktop.
@Override
public Description getDescription() {
Description spec = Description.createSuiteDescription(getName(), classAnnotations());
List<Method> testMethods = this.testMethods;
for (Method method : testMethods) {
spec.addChild(methodDescription(method));
}
return spec;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment