assertValue("Value", getValue(map));
}
public void testMapWithKeyValueOverrides() throws Exception
{
AbstractMapMetaData map = getMap();
assertNull(map.getType());
assertNull(map.getKeyType());
assertNull(map.getValueType());
assertStringValue(Integer.class.getName(), "4", getKey(map));
assertStringValue(Boolean.class.getName(), "true", getValue(map));
}