It's not clear how to run a single test in gradle.

That was easy in Ant:

junit                  Run individual JUnit test
(-Dtest.case=org.apache.jorphan.test.AllTests) (-Dtest.format=plain)
(-Dtest.showoutput=true)

It's also easy in Maven:

maven test -Dtest=AllTests

According to online docs I should be able to run:

gradlew test --tests DnsManagerTest

but that does not work.

Reply via email to