You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you're mentioning here, I also believe that this is related to #199 via the fact that ADB and Android Studio do not acknowledge methods with parameters just yet.
For some context, our instrumentation library installs a custom "Runner Builder" into the test execution pipeline and detects all JUnit 5 stuff. It's connected to a org.junit.runner.Runner implementation with a run() method. That method is not called by the Android instrumentation if the single method contains parameters. I do not know of a way to force it to detect these methods, unfortunately. We'll have to resort to running entire test classes as the next-best point of execution until this is resolved.
I believe this would be useful information to mention in the Scenario as Parameter section here, as I've just spent some time trying to figure out why the example wasn't working.
Probably related to #199.
Steps to reproduce:
ActivityOneTest
)Test without parameter will display normal context menu:
However, right clicking on test with method parameters will just yield "Nothing here" popup:
The text was updated successfully, but these errors were encountered: