How do you developers structure your Android-speci...
# android
t
How do you developers structure your Android-specific tests in Kotlin ? I really like the spec-style syntax of KotlinTest and Spek frameworks (explicit, structured), but those cannot be used for emulator and Robolectric tests because they require a dedicated JUnit runner (namely
AndroidJunit4Runner
and
RobolectricTestRunner
). Is there some hacky JUnit 4 syntax (inner classes, naming, fixtures, rules ...?) or a test framework that make reading and writing tests easier with Kotlin ? JUnit Test methods looks so boring to me now ...