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

I'm trying to fix our messy failing test runs, and, unfortunately, I'm very new to gradle. We currently have testng, junit, and I'd like to add some spock tests to the mix as well. I'm not quite sure how gradle determines which tests to run when I type "gradle test". How can I prevent the testng &/or junit tests from running? How can I get gradle to start running my spock tests?

share|improve this question

1 Answer

up vote 9 down vote accepted

By default, the test task runs all JUnit tests it can find, which includes any Spock tests. To make it run TestNG tests instead, configure the task as follows:

test {
    useTestNG()
}

If you have both JUnit and TestNG tests, you need two test tasks, one for each test framework.

To run a subset of tests, use the -Dtest.single system property. For more information, see the corresponding section in the Gradle User Guide.

share|improve this answer
I looked at the documentation you referenced, but it is quite confusing. For example, what on earth does: "gradle -Dtest.single=a/b/ test" mean? I'm trying to prevent standard junit tests from running, but run spock & testng tests. I'm not having any luck. – Ray Nicholus Apr 4 '11 at 18:06
From the documentation: The testNamePattern will be used to form an include pattern of **/testNamePattern*.class. Hence a/b/ selects all test classes below a package a.b. (Note that a doesn't necessarily have to be a root package.) To run Spock and TestNG but not JUnit tests, you'll need two tasks (as explained above), and configure the JUnit task to just include Spock tests (by package or class naming convention). – Peter Niederwieser Apr 5 '11 at 7:38

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.