public void startElement(String uri, String localName, String qName,
Attributes attrs) throws SAXException {
if ("test".equals(qName)) {
if (_test != null)
throw new SAXException("<test> has already existed!");
_test = new Test(attrsToMap(attrs));
} else if ("case".equals(qName)) {
_case = new Case(attrsToMap(attrs));
_test.add(_case);
_deep = -1;
} else if ("server".equals(qName)) {