I have an Android project that has several library modules, and I'm trying to test a specific package containing all the modules.
I tried this command:
./gradlew -Dtest.single=com.moduleone* testProductionDebug
And this will not work: it does not run tests inside this module, but instead executes all unit tests in the class of the main project package.
How to check only one module?
android android-gradle junit gradle robolectric-gradle-plugin
jonney
source share