Backstory:
- Module A depends on Module B
- Want to know the gradle command line execution when Android Studio runs the unit test package for Module A
This is important because I'm trying to compare how it differs from executing tests from command line with: ./gradlew :testDebug
You see, when running the test package from Android Studio my tests run correctly, but running with command line above gradle throws an exception.
The root of the problem is that when run on command line gradle cannot find resource file for dependent Module B. Line that throws exception: setParametersFromResource(context, R.raw.coursera_mobile_android, VALUE_NAMESPACE);