Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi In my project, I have lot of test cases. What command can be used to selectively run one Test suite/test case? Please help

share|improve this question
i tried using the suggestions given below. I find that entire test cases are getting executed instead of the one specified in the mvn command.Please help – user170114 Nov 20 '09 at 8:32
Please provide your surfire configuration and the command you are running with the output. – Pascal Thivent Nov 20 '09 at 12:26

2 Answers

try running:

mvn -Dtest=<test class> test

More information: http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html

share|improve this answer
Thanks.I tried this.But testcase is not getting executed I am just getting- [INFO] task-segment: [test] [INFO] ------------------------------------------------------------------------ [WARNING] Using platform encoding (MacRoman actually) to copy filtered resources, i.e. build is platform dependent! [INFO] Nothing to compile - all classes are up to date [INFO] [compiler:testCompile {execution: compile}] [INFO] Nothing to compile - all classes are up to date [ [INFO] BUILD SUCCESSFUL in pom - i have added the configuration for surefire plugin.Anything else to be done? – user170114 Nov 20 '09 at 6:12
Would you be able to supply the pom file? do the tests run when doing a standard "mvn install"? – digiarnie Nov 20 '09 at 10:39

mvn test -Dtest=<test-case-name>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.