I am trying to write a junit test case for the method below:
@POST
@Produces(MediaType.APPLICATION_JSON)
@Path("writeStuff")
@Consumes("multipart/form-data")
public Response stuffToWrite(FormDataMultiPart formData) {
....
}
How do I simulate the html form? I am thinking
MultiPart multipart = new FormDataMultiPart();
But I don't know how to populate it with fields and data.
Thanks.