❓ Kotlin Test not integrated with Android Studio - expected?
When defining Unit Tests using only
kotlin.test
classes; Android Studio doesn't provide the same IDE integration as when using JUnit classes.
Specifically: Right-click execution of test classes & individual tests, and capturing the results of the tests in the IDE UI. Is this expected? Seems like a surprising omission.
t
tseisel
11/30/2019, 8:52 AM
What version of Android Studio are you using ? This works properly for me with AS 3.5.2 when annotating test functions with
kotlin.Test
Since this annotation is just a typealias of its JUnit equivalent, this should just work the same