How to run @RunWith(RobolectricTestRunner::class) and @RunWith(Parameterized::class) together in Junit4

1.2k Views Asked by At

I have to test android application written in Kotlin. I tried

@RunWith(RobolectricTestRunner::class)
    public class GeoWindowTest {
  
    @RunWith(Parameterized::class)
    class TestParameterizedGeoWindow {}

} 

but it doesnt work. Im looking if there is another solutions to use these two runners. Also I could have used Junit5 but then Roboelectric is not compatible yet with Junit5

1

There are 1 best solutions below

0
On

Robolectric has support for this, as described in this blog post.

@RunWith(ParameterizedRobolectricTestRunner::class)
class GeoWindowTest(private val param1: String, private val param2: Int) {
    companion object {
        @JvmStatic
        @ParameterizedRobolectricTestRunner.Parameters
        fun data() = listOf(
            arrayOf("Input 1", 4),
            arrayOf("Input 2", 7)
        )
    }  
}