Stephane Bailliez <[EMAIL PROTECTED]> wrote: > The only difference is the signature of the method addFailure in > TestListener.
Thanks,
seems straight forward to patch this, it should even be possible to
make the task work with all versions of JUnit 3.x, something like
public void addFailure(Test test, AssertionFailedError t) {
addFailure(test, (Throwable) t);
}
in all TestListener implementations should do it, right?
Stefan
