String path = node.getPath();
ContainerResponse response = service(WebDAVMethods.PROPPATCH, getPathWS() + path, "", null, xml.getBytes());
assertEquals(HTTPStatus.MULTISTATUS, response.getStatus());
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
PropPatchResponseEntity entity = (PropPatchResponseEntity)response.getEntity();
entity.write(outputStream);
content = getContentNode(node);
assertEquals("testValue1", content.getProperty(propName1).getValue().getString());
assertEquals("testValue2", content.getProperty(propName2).getValue().getString());