SimpleValue nullInteger = initIntegerNull();
CompositeMetaType compositeMetaType = initCompositeMetaType();
Map<String, MetaValue> map = initMapValues();
CompositeValue v = new CompositeValueSupport(compositeMetaType, map);
assertTrue("data should contain value value1", v.containsValue(value1));
assertTrue("data should contain value 2", v.containsValue(integer2));
assertFalse("data should not contain value name1", v.containsValue(name1));
assertFalse("data should not contain key null", v.containsValue(null));
assertFalse("data should not contain key null", v.containsValue(nullString));
assertFalse("data should not contain key <empty>", v.containsValue(emptyString));