I tried run Parameterized Unit Test as below in Android Studio.
import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; i
Kotlin DSL: add to your build.gradle.kts
tasks.withType { useJUnitPlatform() }
Gradle DSL: add to your build.gradle
test { useJUnitPlatform() }