assertThat(e, exception("Could not import template file \"def.htm\" at ", "Line 3 Column 6"));
}
}
private void assertText(String text, Node node) {
Text t = (Text) node;
assertEquals(text, t.text);
String str = t.toString();
assertThat(str, containsAll("Text with ", "characters: "));
}