extracted to outer class

This commit is contained in:
Sander Hautvast 2015-09-26 10:46:54 +02:00
parent 7bd69290c4
commit c74da14533

View file

@ -0,0 +1,23 @@
package nl.jssl.autounit.classanalyser;
import org.jacoco.core.analysis.IClassCoverage;
class InvocationResult {
private final IClassCoverage coverage;
private final Object output;
public InvocationResult(IClassCoverage coverage, Object output) {
super();
this.coverage = coverage;
this.output = output;
}
public IClassCoverage getCoverage() {
return coverage;
}
public Object getOutput() {
return output;
}
}