How to run Junit5 tests on the “Virtual device Testing for Android” step?
Is there a way to pass an instrumentationRunnerArgument to the step?
The Android Studio successfully grabs Junit5 configuration from the build.gradle and executes it.
android {
defaultConfig {
testInstrumentationRunnerArgument(
"runnerBuilder",
"de.mannodermaus.junit5.AndroidJUnit5Builder"
)
}
}