I tried run Parameterized Unit Test as below in Android Studio.
import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; i
To add to already great and easy solution provided by Przemek315, the same config if you use Kotlin DSL:
tasks.test { useJUnitPlatform() }