Skip to content

Instantly share code, notes, and snippets.

@Odinodin
Created January 23, 2012 21:43
Show Gist options
  • Save Odinodin/1665677 to your computer and use it in GitHub Desktop.
Save Odinodin/1665677 to your computer and use it in GitHub Desktop.
Groovy readable test names
class FooBarTest {
@Test
public "should do foo"() {
// ...
}
@Test
public "should do bar"() {
// ..
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment