+ new String(content) + "\r\n--" + boundary + "\r\n"
+ "Content-Disposition: form-data; name=\"content2\"; filename=\"file2\"\r\n"
+ "Content-Type: application/something\r\n" + "Content-Transfer-Encoding: binary\r\n" + "\r\n"
+ new String(content) + "\r\n" + "--" + boundary + "--").getBytes();
MultipartParser parser = prepareParser(boundary, formdata);
assertMultipartBasics(parser, 2, null, true, "file1", "application/something", content);
}