mapping = new Mapping();
InputSource is = new InputSource( new FileReader(map) );
is.setSystemId( mapFile );
mapping.loadMapping( is );
System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++++++");
Unmarshaller unmarshaller = new Unmarshaller(mapping);
Portlets rootset = (Portlets)unmarshaller.unmarshal(reader);
System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++++++");
assertTrue(rootset.getName().equals("theRootSet"));
assertTrue(rootset.getId().equals("01"));