Skip to content

Instantly share code, notes, and snippets.

@tonypiazza
Last active September 27, 2015 10:28
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