>mvn test -Dtest=MyClassTest#*test* java
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Tests.java</include> </includes> <excludes> <exclude>**/Abstract*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build>
Ref: spring
http://www.oschina.net/code/snippet_157514_37277 apache
http://rongjih.blog.163.com/blog/static/335744612010102911363452/ maven