Hi,
So I am trying to write a JUnit unit test for a servlet. I set the RequestPathInfo using the following:
MockRequestPathInfo requestPathInfo = (MockRequestPathInfo) request.getRequestPathInfo();
requestPathInfo.setExtension("json");
requestPathInfo.setSuffix(null);
In the servlet, logic is w...