use of org.jacoco.report.internal.html.HTMLDocument in project jacoco by jacoco.
the class BarColumnTest 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 BarColumn(CounterEntity.LINE, Locale.ENGLISH);
}
use of org.jacoco.report.internal.html.HTMLDocument in project jacoco by jacoco.
the class CounterColumnTest 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();
locale = Locale.ENGLISH;
}
use of org.jacoco.report.internal.html.HTMLDocument in project jacoco by jacoco.
the class LabelColumnTest 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 LabelColumn();
}
use of org.jacoco.report.internal.html.HTMLDocument 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.internal.html.HTMLDocument 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();
}
Aggregations