Skip to content

Instantly share code, notes, and snippets.

@philipjkim
Created July 11, 2012 00:55
Show Gist options
  • Save philipjkim/3087238 to your computer and use it in GitHub Desktop.
Save philipjkim/3087238 to your computer and use it in GitHub Desktop.
Test class for executing all integration tests (unit tests excluded)
import org.junit.extensions.cpsuite.ClasspathSuite;
import org.junit.extensions.cpsuite.ClasspathSuite.ClassnameFilters;
import org.junit.runner.RunWith;
@RunWith(ClasspathSuite.class)
@ClassnameFilters({".*IntegrationTest"})
public class IntegrationTests {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment