Created
July 11, 2012 00:55
-
-
Save philipjkim/3087238 to your computer and use it in GitHub Desktop.
Test class for executing all integration tests (unit tests excluded)
This file contains 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
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