clientNodeProperties.add("propTwo", "propTwoValue");
String testNodeUrl = H.getTestClient().createNode(createTestNodeUrl, clientNodeProperties, null, false);
String content = H.getContent(testNodeUrl + ".json", HttpTest.CONTENT_TYPE_JSON);
JSONObject json = new JSONObject(content);
Object propOneObj = json.opt("propOne");
assertTrue(propOneObj instanceof JSONArray);
assertEquals(2, ((JSONArray)propOneObj).length());
assertEquals("propOneValue1", ((JSONArray)propOneObj).get(0));
assertEquals("propOneValue2", ((JSONArray)propOneObj).get(1));