I tried run Parameterized Unit Test as below in Android Studio.
import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; i
For me it worked when I've added @EnableJUnit4MigrationSupport class annotation.
@EnableJUnit4MigrationSupport
(Of course together with already mentioned gradle libs and settings)