use of org.jacoco.core.internal.analysis.SourceNodeImpl in project jacoco by jacoco.
the class SourceHighlighterTest method setup.
@Before
public void setup() throws Exception {
htmlSupport = new HTMLSupport();
source = new SourceNodeImpl(ElementType.SOURCEFILE, "Foo.java");
buffer = new StringWriter();
html = new HTMLDocument(buffer, "UTF-8");
html.head().title();
parent = html.body();
sourceHighlighter = new SourceHighlighter(Locale.US);
}
Aggregations