I know you can run all the tests in a certain class using:
mvn test -Dtest=classname
But I want to run an individual method and -Dtest=classname.methodname doesn't seem to work.
|
I know you can run all the tests in a certain class using:
But I want to run an individual method and -Dtest=classname.methodname doesn't seem to work. |
||||
|
To run a single test method in Maven, you need to provide the command as:
where TestCircle is the test class name and xyz is the test method, wild card characters also work (both in the method name and class name). |
|||||||||||||||||||
|
|
There is an issue with surefire 2.12. This is what happen to me changing maven-surefire-plugin from 2.12 to 2.11:
|
|||||||||||
|
|
What I do with my TestNG, (sorry, JUnit doesn't support this) test cases is I can assign a group to the test I want to run
And then simply run 'mvn -Dgroups=broken'. |
|||||||||
|
|
New versions of JUnit contains the Categories runner: http://kentbeck.github.com/junit/doc/ReleaseNotes4.8.html But releasing procedure of JUnit is not maven based, so maven users have to put it manually to their repositories. |
|||||||||
|
|
The test parameter mentioned by tobrien allows you to specify a method using a # before the method name. This should work for JUnit and TestNG. I've never tried it, just read it on the Surefire Plugin page:
|
|||
|
|
|
Running a set of methods in a Single Test Class With version 2.7.3, you can run only n tests in a single Test Class. NOTE : it's supported for junit 4.x and TestNG. You must use the following syntax
You can use patterns too
As of surefire 2.12.1, you can select multiple methods (JUnit4X only at this time, patches welcome)
Check this link about single tests |
||||
|
|
|
You can run a single test class, but not a single method within a test class. You use the simple name of the class not the fully-qualified name of the class. So, if you have a test in "org.sonatype.test.MyTest" and that is the only test you want to run, your command line would look like this:
|
||||
|
|
|
To my knowledge, the surefire plugin doesn't provide any way to do this. But feel free to open an issue :) |
|||
|
|
mvn test -Dtest=classnamesyntax. – John Paulett Dec 9 '09 at 13:57