JUnitParams is only passing primitive objects (String, int) but not other objects, eg.:
@Test
@Parameters
testMethod(String sample, MyObj myobj, MyObj myobj)
{}
private Object[] parametersForTestMethod()
{
return $($("testString", myobj, myotherobj));
}
Only "testString"
gets passed, remaining are null
. Is there a workaround to pass non-primitive parameters?
Your example is missing some details. The example below works for me.
Take a look at a blog post where I add more details if you are interested, http://thomassundberg.wordpress.com/2014/04/24/passing-non-primitive-objects-as-parameters-to-a-unit-test/