* object attributes are mapped from xml names to their actual java names.
*/
public void testPropertyMapping()
{
String configString = createXml(TEST_PROPERTY_MAPPING);
XmlIOConfig config = XmlIOConfig.getInstance();
// Set up mapping
List list = new LinkedList();
list.add(new PropertyMap("a", "string"));
list.add(new PropertyMap("b", "number"));
ObjectMap oMap = new ObjectMap("TestHelperSimple", "TestHelperSimple", list);
config.addObjectMap(oMap);
InputStream reader = new ByteArrayInputStream(configString.getBytes());
XmlReader xmlReader = null;
try
{
xmlReader = new XmlReader(reader, "org.bifrost.xmlio.test.helpers");