use of org.jacoco.report.MemoryMultiReportOutput in project jacoco by jacoco.
the class PercentageColumnTest method setup.
@Before
public void setup() throws Exception {
output = new MemoryMultiReportOutput();
root = new ReportOutputFolder(output);
resources = new Resources(root);
doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8");
doc.head().title();
td = doc.body().table("somestyle").tr().td();
support = new HTMLSupport();
column = new PercentageColumn(CounterEntity.LINE, Locale.ENGLISH);
}
use of org.jacoco.report.MemoryMultiReportOutput in project jacoco by jacoco.
the class TableTest method setup.
@Before
public void setup() throws IOException {
output = new MemoryMultiReportOutput();
root = new ReportOutputFolder(output);
resources = new Resources(root);
doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8");
doc.head().title();
body = doc.body();
table = new Table();
}
use of org.jacoco.report.MemoryMultiReportOutput in project jacoco by jacoco.
the class ReportOutputFolderTest method setup.
@Before
public void setup() {
output = new MemoryMultiReportOutput();
root = new ReportOutputFolder(output);
}
use of org.jacoco.report.MemoryMultiReportOutput in project jacoco by jacoco.
the class ResourcesTest method setup.
@Before
public void setup() {
output = new MemoryMultiReportOutput();
root = new ReportOutputFolder(output);
resources = new Resources(root);
}
Aggregations