I tried run Parameterized Unit Test as below in Android Studio.
import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; i
If you are using intellij and want to use gradle you need to add this to the dependencies section of build.gradle file:
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.2")