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 virtdata-lib-curves4 Show documentation
Show all versions of virtdata-lib-curves4 Show documentation
Statistical sampling library for use in virtdata libraries, based
on apache commons math 4
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;
}
}