* Sets up all the mock objects.
*/
private void setUpMockObjects() {
this.request = new CustomMockHttpServletRequest();
byte[] content = { 4, 6, 7 };
ServletInputStream inputStream = new DelegatingServletInputStream(
new ByteArrayInputStream(content));
this.request.inputStream = inputStream;
this.response = new MockHttpServletResponse();