Clearly I\'m not using this test fixture right. My servlet works just fine in tomcat, but when I try to use this mock, the multi-part boundary is not found. \"the request
Vote up for Samuel. Though spent one day trying to make it working. The problem was in:
String end = "--" + boundary + "--";
Should be:
String end = "\r\n--" + boundary + "--";