public void testRoundTrip() throws Exception
{
Map<String, ProtocolStackConfigInfo> map = factory.getProtocolStackConfigurations();
ProtocolStackConfigurationsMapper testee = new ProtocolStackConfigurationsMapper();
MetaValue metaValue = testee.createMetaValue(ProtocolStackConfigurationsMapper.TYPE, map);
ManagedObjectTestUtil.validateProtocolStackConfigurations(metaValue, new String[]{"unshared1", "shared1"});
Map<String, ProtocolStackConfigInfo> restored = testee.unwrapMetaValue(metaValue);
assertEquals(map.keySet(), restored.keySet());
// FIXME go deeper
}