if (start) {
m_currentTest = new XmlTest(m_currentSuite);
m_currentTestParameters = new HashMap<String, String>();
final String testName= attributes.getValue("name");
if(null == testName || "".equals(testName.trim())) {
throw new TestNGException("Test <test> element must define the name attribute");
}
m_currentTest.setName(attributes.getValue("name"));
String verbose = attributes.getValue("verbose");
if (null != verbose) {
m_currentTest.setVerbose(Integer.parseInt(verbose));