Skip to content

Instantly share code, notes, and snippets.

@tonypiazza
Last active September 27, 2015 10:28
Show Gist options
  • Save tonypiazza/1255703 to your computer and use it in GitHub Desktop.
Save tonypiazza/1255703 to your computer and use it in GitHub Desktop.
Example usage of the org.junit.runner.RunWith and org.junit.runners.Suite.SuiteClasses annotations
@RunWith(Suite.class)
@Suite.SuiteClasses({AuctionTest.class, BidTest.class, UserTest.class})
public class CoreAuctionDomainSuite {
// empty class
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment