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.

Thanks -Bill

link|improve this question

41% accept rate
2  
I would be interested in knowing how to do this, too. However, if I found myself doing it quite often, I think that test might be a candidate to be split out into its own class, so you can use the mvn test -Dtest=classname syntax. – John Paulett Dec 9 '09 at 13:57
Do you want to know how to do it via command line only?? Or using an IDE (eclipse) would work for you? – Diego Dias Dec 9 '09 at 14:04
I was looking at a command line. I think the junit eclipse plugin will allow you to do this. – BillMan Dec 9 '09 at 14:21
I did this for Maven 1. As I recalled, it involved making changes to JUnit, which is responsible for introspecting the test class. – kdgregory Dec 11 '09 at 13:49
feedback

7 Answers

To run a single test method in Maven, you need to provide the command as:

mvn -Dtest=TestCircle#xyz test

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).

link|improve this answer
3  
This is the correct answer to the question – Collin Peters Jun 22 '11 at 16:37
I wish there was a way to merge answers... this is correct, but the link its taken from is in another post: maven.apache.org/plugins/maven-surefire-plugin/examples/… – cjstehno Jun 28 '11 at 11:54
I was wondering if the class name should be a fully qualified class name, with the package name, and the answer is, that while a fully qualified name works, also only the class name works, Maven looks the class up for you. I guess that if the name is ambiguous, it will emit an error. – stivlo Nov 4 '11 at 2:57
3  
a always get the error: No Tests Were Executed ! – Msaleh Nov 21 '11 at 10:12
feedback

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

@Test(groups="broken")

And then simply run 'mvn -Dgroups=broken'.

link|improve this answer
This is a good answer. In my case, the test tried to run but some Seam components weren't set up properly so it looks like this is skipping some portion of the setup code as well. – Chris Williams Aug 11 '10 at 20:32
Correct. You need to either put groups=broken in in your @BeforeMethod, or do @BeforeMethod(alwaysRun=true) – tunaranch Aug 12 '10 at 5:36
feedback

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.

link|improve this answer
1  
Nice. But I don't see how this answers the question. – Pascal Thivent Dec 10 '09 at 14:33
Subj is supported from 2.7.3 version of maven-surefire-plugin: maven.apache.org/plugins/maven-surefire-plugin/examples/… – Andriy Plokhotnyuk Apr 4 '11 at 0:36
I didn't know that existed. Thanks. – djangofan Apr 12 at 15:26
feedback

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:

Specify this parameter to run individual tests by file name, overriding the includes/excludes parameters. Each pattern you specify here will be used to create an include pattern formatted like **/${test}.java, so you can just type "-Dtest=MyTest" to run a single test called "foo/MyTest.java". This parameter overrides the includes/excludes parameters, and the TestNG suiteXmlFiles parameter. since 2.7.3 You can execute a limited number of method in the test with adding #myMethod or #my*ethod. Si type "-Dtest=MyTest#myMethod" supported for junit 4.x and testNg

link|improve this answer
feedback

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

link|improve this answer
A little extra info wouldn't hurt. It's also functional only for recent versions. – Robert Munteanu May 3 '11 at 11:24
feedback

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:

mvn test -Dtest=MyTest

link|improve this answer
feedback

To my knowledge, the surefire plugin doesn't provide any way to do this. But feel free to open an issue :)

link|improve this answer
-1 because it's possible, see the leading answer – stivlo Nov 4 '11 at 5:22
feedback

Your Answer

 
or
required, but never shown

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