servlet.service(request, response);
assertEquals("myOtherView", response.getContentAsString());
request = new MockHttpServletRequest("POST", "/methodnamedispatching/myLangHandle.x");
response = new MockHttpServletResponse();
servlet.service(request, response);
assertEquals("myLangView", response.getContentAsString());
request = new MockHttpServletRequest("POST", "/methodnamedispatching/mySurpriseHandle.y");
response = new MockHttpServletResponse();
servlet.service(request, response);