super(name);
}
public void testAdaptedUnmarshal() throws Exception
{
Adapted result = unmarshalObject(Adapted.class);
// Class should have been changed by the adapter
assertTrue(result instanceof AdaptedSubclass);
// Properties should have been swapped by the adapter
assertEquals("property1", result.property2);
assertEquals("property2", result.property1);