Coming Up for Air

Gradle Tip: Running a Single Test

Tuesday, Sep 24, 2013 |

Gradle Tip: Running a Single Test

Using Maven, to run a single test (class), you would issue mvn -Dtest=MyTest. Gradle has similar functionality (gradle -Dtest.single=MyTest), though it seems to be much more powerful. You can get all the details here .