SMInputCursor testSuiteCursor = rootCursor.constructDescendantCursor(new ElementFilter("testsuite"));
try{
testSuiteCursor.getNext();
}
catch(com.ctc.wstx.exc.WstxEOFException eofExc){
throw new EmptyReportException();
}
do{
String testSuiteClassName = testSuiteCursor.getAttrValue("name");
String testFileName = testSuiteCursor.getAttrValue("filename");