如何启用Mockito调试消息?特别是,我想打印使用when()
存根的方法的详细信息,以及与这些方法的每次交互。
Mockito 1.9.0引入了监听器,现在捆绑了一个详细的记录器:
因此,基本上,如果你想要简单而愚蠢的日志,只需执行以下操作:
List mockWithLogger = mock(List.class, withSettings().verboseLogging());
请参阅http://docs.mockito.googlecode.com/hg/latest/org/mockito/MockSettings.html#verboseLogging()了解更多信息
干杯,
Brice答案是可行的,但另一种选择是:
new org.mockito.internal.debugging.MockitoDebuggerImpl().printInvocations(mockedObject);
它只是将在此点之前发生的交互打印到给定的选项。不够健壮,但有诀窍,可能对某些情况有用(即使用模拟注释时)
例如,这应该根据MockitoSettings 工作
spiedObject = mock(ToMock.class, withSettings().spiedInstance(toMockInstance).verboseLogging())
虽然在1.9.5中似乎没有发现任何东西,但它只是在嘲笑它。