public void testSpecificListAsParameter() throws Exception {
final MyObject object = new MyObject("object");
final List<MyObject> list = Arrays.asList(new MyObject("list1"), new MyObject("list2"));
final FormDataMultiPart mp = new FormDataMultiPart();
mp.bodyPart(new FormDataBodyPart(FormDataContentDisposition.name("object").fileName("object").build(),
object, MediaType.APPLICATION_JSON_TYPE));
mp.bodyPart(new FormDataBodyPart(FormDataContentDisposition.name("list").fileName("list").build(),
list, MediaType.APPLICATION_JSON_TYPE));
final Response response = target("listAsParameter")