コード例 #1
0
  public void testInitWithServletConfig() throws ServletException {
    ServletConfig servletConfig = mock(ServletConfig.class);
    cutOffContextPathWrapper.init(servletConfig);

    verify(servlet).init(servletConfig);
  }
コード例 #2
0
  public void testInit() throws ServletException {
    cutOffContextPathWrapper.init();

    verify(servlet).init();
  }