JUnitParams for each method of class

881 Views Asked by At

Is it possible to run parameterized test for each method of test class with JUnitParams and class level annotations? Something like:

@RunWith(JUnitParamsRunner.class)
@Parameters(method = "paramsGenerator")
public class TestMethod {

    public Integer[] paramsGenerator() {
        return new Integer[] {1, 2, 3};
    }

    @Test
    public void test1(Integer myInt) {
        ......
    }

    @Test
    public void test2(Integer myInt) {
        ......
    }
}
2

There are 2 best solutions below

0
On BEST ANSWER

No, you cannot have a class-level parameters annotation that would cover all test methods. You must declare @Parameters(method = "paramsGenerator") on each test method. Your use case is pretty rare - most often different test methods require different parameters (eg. you have one method for valid and one for invalid input).

1
On

The test class should be like this:

@RunWith(Parameterized.class)
public class Testcase {

    private int myInt;

    public Testcase(int myInt) {
        this.myInt = myInt;
    }

    @Parameters(name = "{0}")
    public static Collection<Integer> data() {
        Integer[] data = new Integer[] {1,2,3,4};

        return Arrays.asList(data);
    }

    @Test
    public void test1() {
        // TODO
    }

    @Test
    public void test2() {
        // TODO
    }
}

I don't know where you got JUnitParamsRunner from. As you can see in my example, JUnit 4 defines Parameterized.