public void testLogWithThrowable() { Throwable throwable = new Throwable(); String message = "message"; cutOffContextPathWrapper.log(message, throwable); verify(servlet).log(message, throwable); }
public void testLog() { String message = "message"; cutOffContextPathWrapper.log(message); verify(servlet).log(message); }