In my project, I have lot of test cas开发者_如何学Goes. What command can be used to selectively run one Test suite/test case? Please help
try running:
mvn -Dtest=<test class> test
More information: http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html
mvn test -Dtest=<test-case-name>
精彩评论