in src/main/org/apache/ant/antunit/listener/XMLAntUnitListener.java [152:163]
public void startTest(String target) {
try {
super.startTest(target);
currentTest = DOMUtils.createChildElement(root,
XMLConstants.TESTCASE);
currentTest.setAttribute(XMLConstants.ATTR_NAME, target);
domWri.openElement(currentTest, wri, 1, INDENT, true);
wri.write(StringUtils.LINE_SEP);
} catch (IOException ex) {
throw new BuildException(ex);
}
}