m_testListener.onStart(m_currentTest);
} else if (TAG_CLASS.equals(qName)) {
m_className = attributes.getValue(ATTR_NAME);
} else if (TAG_TEST_METHOD.equals(qName)) {
Integer status = XMLReporterConfig.getStatus(attributes.getValue(ATTR_STATUS));
m_currentTestResult = new TestResultMessage(status, m_currentSuite.getSuiteName(),
m_currentTest.getTestName(), m_className, attributes.getValue(ATTR_NAME),
attributes.getValue(ATTR_DESC),
new String[0], /* no parameters, filled later */
0, Long.parseLong(attributes.getValue(ATTR_DURATION_MS)),
"" /* stack trace, filled later */,