gpt4 book ai didi

java - 如何使用 ArgumentCaptor mockito 捕获函数参数

转载 作者:行者123 更新时间:2023-12-01 20:05:02 25 4
gpt4 key购买 nike

我有

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(functionCaptor.capture());

/* Do your assertions after you captured the value */
assertThat(functionCaptor.getValue()).isInstanceOf(Runnable.class);
}
}

关于java - 如何使用 ArgumentCaptor mockito 捕获函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47565887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com