7

I am new to parameterized feature of JUnit 4.x and having a problem. My parameterized test consists of 3 integer arrays and I am having difficulty of how to declare them. What I have below generates run-time error:

testGeneral[0] caused an ERROR: argument type mismatch
    argument type mismatch
    java.lang.IllegalArgumentException
    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
testGeneral[1] caused an ERROR: argument type mismatch
    argument type mismatch
    java.lang.IllegalArgumentException
    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)

Here is my code:

@RunWith(Parameterized.class)
public class MyArrayTest {
    private Integer[] inputList1;
    private Integer[] inputList2;
    private Integer[] expectedList;

    public MyArrayTest(Integer[] li1, Integer[] li2, Integer[] expected) {
        // ========> Runtime error happens here. <=========
        this.inputList1 = li1;
        this.inputList2 = li2;
        this.expectedList = expected;
    }

    @Parameterized.Parameters
    public static Collection testCases() {
        return Arrays.asList(new Object[][][] {
            {{1,1,1}, {2,2,2}, {3,3,3}},
            {{2,2,2}, {3,3,3}, {4,4,4}}
        });
    }

    @Test
    public void testGeneral() {
        // Do some test with this.inputList1, this.inputList2,
        // and verify with this.expectedList
        // I am not even getting here yet.
    }
}

I appreciate your help to correctly passing the three arrays to my tests.

Hai Vu
  • 37,849
  • 11
  • 66
  • 93

2 Answers2

7

The reason why it is failing is because your test expects Integer arrays whereas you are passing Object type. So you are expanding the type. Try this:

@Parameterized.Parameters
public static Collection testCases() {
    return Arrays.asList(new Integer[][][] {
        {{1,1,1}, {2,2,2}, {3,3,3}},
        {{2,2,2}, {3,3,3}, {4,4,4}}
    });
}
Jin Kwon
  • 20,295
  • 14
  • 115
  • 184
Vivin
  • 1,327
  • 2
  • 9
  • 28
0

This solution uses junitparams, implements junitparams.converters.Converter and parses list of long values as parameters.

package example;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.Arrays;
import java.util.stream.Collectors;

import org.junit.Test;
import org.junit.runner.RunWith;

import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import junitparams.converters.ConversionFailedException;
import junitparams.converters.Converter;
import junitparams.converters.Param;

@RunWith(JUnitParamsRunner.class)
public class LongArrayParameterTest {

    @Parameters({ "0|10", "1|10;20;30" })
    @Test
    public void test(final long otherParameter, @LongArrayParam final long[] expected) {
        System.out.println(Arrays.stream(expected).boxed().map(l -> Long.toString(l)).collect(Collectors.toList()));
    }

    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.PARAMETER)
    @Param(converter = LongArrayConverter.class)
    public @interface LongArrayParam {

    }

    public static class LongArrayConverter implements Converter<LongArrayParam, long[]> {

        @Override
        public void initialize(final LongArrayParam annotation) {
        }

        @Override
        public long[] convert(final Object param) throws ConversionFailedException {
            final String str = (String) param;
            final String[] longStrings = str.split(";");
            return Arrays.stream(longStrings).mapToLong(s -> Long.parseLong(s)).toArray();
        }

    }
}

This parser does not support empty list.

Jónás Balázs
  • 781
  • 10
  • 24