Open
Description
Repro code @ #105
I basically tried two things:
-
I opened the project in Android Studio and setup the listener by adding:
-e listener com.example.android.testing.androidjunitrunnersample.suite.MyListener
If I breakpoint onsuper.testRunStarted(description);
I get that description is null when it shouldn't. -
I have also tried using the cmd line by running
./gradlew connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.listener=com.example.android.testing.androidjunitrunnersample.suite.MyListener
testRunStarted() is still called with description == null.