You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using 1.0.2 of JunitParams and the wiki entry MergingWithOtherRunners says
public class MyRunner extends BlockJUnit4ClassRunner {
private ParameterisedTestClassRunner parameterisedRunner = new ParameterisedTestClassRunner();
but in fact ParameterisedTestClassRunner has no default C'tor.
I did something like this..
public abstract class MyTestRunner extends BlockJUnit4ClassRunner {
private final ParameterisedTestClassRunner parameterisedRunner;
public MyTestRunner (Class<?> klass) throws InitializationError {
super(klass);
parameterisedRunner = new ParameterisedTestClassRunner(super.getTestClass());
// redirectJULToSLF4J();
}
Original issue reported on code.google.com by [email protected] on 3 Jan 2014 at 7:29
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 3 Jan 2014 at 7:29The text was updated successfully, but these errors were encountered: