Created
October 29, 2015 15:00
-
-
Save patrykpoborca/e8101f6b39d60f98be5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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