/**
* Test default value for Char property types
*/
public void testCharDefaults()
{
DefaultsBean bean = new DefaultsBean();
ManagedObject managedObject = super.initManagedObject(bean);
ManagedProperty propCharPrimitive = managedObject.getProperty("propCharPrimitive");
SimpleValue defaultValue = (SimpleValue) propCharPrimitive.getDefaultValue();
assertNotNull(defaultValue);
assertEquals(SimpleMetaType.CHARACTER_PRIMITIVE, defaultValue.getMetaType());