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