コード例 #1
0
  public void testLogWithThrowable() {
    Throwable throwable = new Throwable();
    String message = "message";
    cutOffContextPathWrapper.log(message, throwable);

    verify(servlet).log(message, throwable);
  }
コード例 #2
0
  public void testLog() {
    String message = "message";
    cutOffContextPathWrapper.log(message);

    verify(servlet).log(message);
  }