我有
Somefun(){
mockedService.execute(()->{
//function body
})
}
所以我想在模拟中运行execute方法。我该怎么办?
我发现如果以某种方式捕获此模拟(它是一个函数)的参数并执行它,我的工作就可以完成。有什么办法可以做到这一点?或其他方式。
谢谢!
最佳答案
它看起来像这样:
@RunWith(MockitoRunner.class)
public class SomeFunTest {
@Mock Service mockedService;
@Captor ArgumentCaptor<Runnable /* or whatever type of function you expect there*/> functionCaptor;
@Test
public void serviceShouldInvokeFunction() {
// given
ObjectUnderTest out = new ObjectUnderTest(mockedService);
// when
out.SomeFun();
// then
verify(mockedService).execute(captor.capture());
/* Do your assertions after you captured the value */
assertThat(captor.getValue()).isInstanceOf(Runnable.class);
}
}