mannodermaus / android-junit5

Testing with JUnit 5 for Android.
Apache License 2.0
859 stars 52 forks source link

Test results window does not show per-test logs for parameterized tests #350

Closed mannodermaus closed 1 month ago

mannodermaus commented 1 month ago

The test results window in Android Studio shows two tabs for a test method without parameters: Device Info and Logs. For a parameterized test, only Device Info is shown.

OK NG
ok ng

Like with so many issues in the past, it's probably the usage of round brackets that trip up the instrumentation here (i.e. Android internally cuts off at the first (). Replacing with square brackets could be an easy fix for this.

after