extracted to outer class
This commit is contained in:
parent
7bd69290c4
commit
c74da14533
1 changed files with 23 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue