Having a test
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(JUnitParamsRunner.class)
public class JunitParamsToStringTest {
@Test
@Parameters(method = "getObjects")
public void shouldExecuteThisTest(Object object) {
}
public Object[] getObjects() {
return new Object[] { new Object() {
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
} };
}
}
It doesn't show any outcome in eclipse - no status bar.
It just says finished after **seconds, Runs 0/1
I would expect this test to be executed normally :)
Original issue reported on code.google.com by tomasz.b...@pragmatists.pl on 4 Jan 2012 at 10:58
Original issue reported on code.google.com by
tomasz.b...@pragmatists.pl
on 4 Jan 2012 at 10:58