如何在使用 Mockito 调用 thenCallRealMethod()
之前执行额外的操作(例如记录日志、调用其他方法等)?
Mockito.when(student.calculateGrade())
.pipe(() -> {
System.out.println("blabla");
doSomethingElse("...");
}).thenCallRealMethod();
上面的代码中是否有类似于 pipe()
方法的东西?