handler.startElement( "", "", childName, new AttributesImpl() );
handler.characters( value.toCharArray(), 0, value.length() );
handler.endElement( "", "", childName );
handler.endElement( "", "", qName );
final Configuration configuration = handler.getConfiguration();
assertEquals( "configuration.name", qName, configuration.getName() );
assertEquals( "configuration.location", "", configuration.getLocation() );
assertEquals( "configuration.path", "", configuration.getPath() );
final Configuration[] children = configuration.getChildren();
assertEquals( "children.length", 1, children.length );
assertEquals( "children[ 0 ].name", childName, children[ 0 ].getName() );
assertEquals( "children[ 0 ].location", "", children[ 0 ].getLocation() );
assertEquals( "children[ 0 ].path", qName, children[ 0 ].getPath() );
assertEquals( "children[ 0 ].value", value, children[ 0 ].getValue() );