Is there a kotlin.test analog to JUnit `@RunWith(P...
# test
k
Is there a kotlin.test analog to JUnit
@RunWith(Parameterized::class)
?
b
Not that I'm aware of but I've gotten around this by creating an abstract test class which takes constructor parameters and implementing it multiple times for each variant. You can see an example here: https://github.com/square/okio/blob/master/okio/src/commonTest/kotlin/okio/BufferedSourceTest.kt
@kevin.cianfarini ^
k
Makes sense. Thanks!