Object value = entry.getValue();
String key = entry.getKey();
if(value instanceof TestReport){
TestReport report = (TestReport)value;
Element reportElement = null;
if(report.getTest() instanceof TestSuite){
reportElement
= reportDocument.createElementNS(XTR_NAMESPACE_URI,
XTR_TEST_SUITE_REPORT_TAG);
}
else{