org.junit.experimental.results.FailureList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-dep Show documentation
Show all versions of junit-dep Show documentation
JUnit is a regression testing framework written by Erich Gamma and Kent Beck.
It is used by the developer who implements unit tests in Java.
/**
*
*/
package org.junit.experimental.results;
import java.util.List;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import org.junit.runner.notification.RunListener;
class FailureList {
private final List failures;
public FailureList(List failures) {
this.failures= failures;
}
public Result result() {
Result result= new Result();
RunListener listener= result.createListener();
for (Failure failure : failures) {
try {
listener.testFailure(failure);
} catch (Exception e) {
throw new RuntimeException("I can't believe this happened");
}
}
return result;
}
}