io.split.testrunner.junit.TestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.testrunner.junit;
import org.junit.runner.Result;
import java.io.ByteArrayOutputStream;
/**
* Composition that also contains the output stream, besides the result.
*/
public class TestResult {
private final Result result;
private final ByteArrayOutputStream out;
public TestResult(Result result, ByteArrayOutputStream out) {
this.result = result;
this.out = out;
}
public Result getResult() {
return result;
}
public ByteArrayOutputStream getOut() {
return out;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy