public void testPropertiesMultiValueEmpty() throws IOException, JSONException {
List<PropertyDescription> properties = new ArrayList<PropertyDescription>();
PropertyDescription prop = new PropertyDescription();
prop.setName("p1");
prop.addValue(null); // empty multivalue property
properties.add(prop);
String json = this.toJsonObject(properties).toString();
NodeDescription node = this.parse(json);