public void testVersionCompatibilityEnablementServiceForElementImplied() throws Exception
{
final RootElement root = RootElement.TYPE.instantiate();
final Property property = root.property( RootElement.PROP_CHILD_IMPLIED );
assertFalse( property.enabled() );
root.setVersion( "1.0" );
assertFalse( property.enabled() );
root.setVersion( "3.0" );