com.anarsoft.vmlens.concurrent.junit.internal.TestResultFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of concurrent-junit Show documentation
Show all versions of concurrent-junit Show documentation
A http://junit.org test runner to run concurrent unit tests.
The newest version!
package com.anarsoft.vmlens.concurrent.junit.internal;
import org.junit.internal.runners.model.EachTestNotifier;
public class TestResultFailure extends TestResult {
private final Throwable error;
public TestResultFailure(Throwable error) {
super();
this.error = error;
}
@Override
public void addFailure(EachTestNotifier eachTestNotifier) {
eachTestNotifier.addFailure(error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy