HiI am writing a unit test for a servlet that uses an excel file as input stream using the poi libraryorg.apache.poiThis is the servlet: protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) throws IOException {
PrintWriter out = response.getWriter();
Requ...