android:junit running Parameterized testcases.
- by puneetinderkaur
Hi,
i wan to run a single testcase with different parameters.
in java
it possible through junit4 and code is like this
package com.android.test;
import static org.junit.Assert.assertEquals;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import…