ManagedProperty propCharPrimitive = managedObject.getProperty("propCharPrimitive");
SimpleValue defaultValue = (SimpleValue) propCharPrimitive.getDefaultValue();
assertNotNull(defaultValue);
assertEquals(SimpleMetaType.CHARACTER_PRIMITIVE, defaultValue.getMetaType());
getLog().debug("propCharPrimitive default: "+defaultValue);
int compare = defaultValue.compareTo(SimpleValueSupport.wrap('c'));
assertEquals("propCharPrimitive == c; ", 0, compare);
ManagedProperty propChar = managedObject.getProperty("propChar");
defaultValue = (SimpleValue) propChar.getDefaultValue();
assertNotNull(defaultValue);