use of org.jacoco.report.MemoryOutput in project jacoco by jacoco.
the class XMLFormatterTest method setup.
@Before
public void setup() {
driver = new ReportStructureTestDriver();
formatter = new XMLFormatter();
output = new MemoryOutput();
infos = new ArrayList<SessionInfo>();
data = new ArrayList<ExecutionData>();
}
use of org.jacoco.report.MemoryOutput in project jacoco by jacoco.
the class CSVFormatterTest method setup.
@Before
public void setup() throws Exception {
driver = new ReportStructureTestDriver();
formatter = new CSVFormatter();
output = new MemoryOutput();
visitor = formatter.createVisitor(output);
}
Aggregations