By using JUnitParameter for testing a methode I have an exception. My code is similar to lot of example on JUnitParameter:
private Object parametersForTe
Add @RunWith(JUnitParamsRunner.class) annotation above class as
@RunWith(JUnitParamsRunner.class) public class TestClass {
Also you need to import
import junitparams.JUnitParamsRunner;