target.addAttribute(name(ATTR_NAME).value(suiteName == null ? UNKNOWN : suiteName));
return this;
}
SuiteXmlNodeWriter writeSuiteProperties(XmlNode target, JUnitTest suite) {
XmlNode propertiesNode = target.addNewNode(PROPERTIES);
Properties properties = suite.getProperties();
if (properties == null) return this;
Enumeration<?> propertyNames = properties.propertyNames();
while (propertyNames.hasMoreElements())
writeProperty(propertiesNode, properties, (String)propertyNames.nextElement());