Using JUnit 4.8 and the new @Category
annotations, is there a way to choose a subset of categories to run with Maven\'s Surefire plugin?
For example I h
Not exactly the same thing but using surefire plugin, test classes can be chosen based on file name. You are not using Junit Categories though.
An example for running just DAO tests.
test-dao
test
test
none
**/com/proy/core/dao/**/*Test.java
http://maven.apache.org/plugins/maven-surefire-plugin/examples/inclusion-exclusion.html