post.addParameter("user[telephone]", RandomUtil.randomPhone(random, b).toString());
post.addParameter("user[summary]", RandomUtil.randomText(random, 50, 200));
post.addParameter("user[timezone]", RandomUtil.randomTimeZone(random));
Part imagePart = new FilePart("user_image", personImg, "image/jpeg", null);
post.addPart(imagePart);
addAddress(post);
loadStatics(addPersonStatics);
doMultiPartPost(post, "Succeeded in creating user.");