gpt4 book ai didi

mockito thenReturn 中的 Java 枚举列表

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:04:12 25 4
gpt4 key购买 nike

有没有一种方法可以在 mockito 的 thenReturn 函数中枚举列表中的项目,以便我返回列表中的每个项目。到目前为止,我已经这样做了:

List<Foo> returns = new ArrayList<Foo>();
//populate returns list

Mockito.when( /* some function is called */ ).thenReturn(returns.get(0), returns.get(1), returns.get(2), returns.get(3));

这完全符合我的要求。每次调用该函数时,它都会从列表中返回一个不同的对象,例如 get(1)get(2) 等。

但我想简化它并使其对任何大小的列表都更加动态,以防我有一个大小为 100 的列表。我尝试了这样的事情:

Mockito.when( /* some function is called */ ).thenReturn(
for(Foo foo : returns) {
return foo;
}
);

我也试过这个:

Mockito.when(service.findFinancialInstrumentById(eq(1L))).thenReturn(
for (int i=0; i<returns.size(); i++) {
returns.get(i);
}
);

但这行不通....所以我如何在 thenReturn 中枚举此列表....我遇到了其他方法来喜欢 thenanswer,但我不确定在这种情况下哪个最有效。

最佳答案

thenReturn() 方法签名是

thenReturn(T value, T... values)

所以它需要一个 T 的实例,后跟一个可变参数 T...,它是数组的语法糖。所以你可以使用

when(foo.bar()).thenReturn(list.get(0), 
list.subList(1, list.size()).toArray(new Foo[]{}));

但更简洁的解决方案是创建一个 Answer 实现,该实现将 List 作为参数并在每次使用时回答列表的下一个元素。然后使用

when(foo.bar()).thenAnswer(new SequenceAnswer<>(list));

例如:

private static class SequenceAnswer<T> implements Answer<T> {

private Iterator<T> resultIterator;

// the last element is always returned once the iterator is exhausted, as with thenReturn()
private T last;

public SequenceAnswer(List<T> results) {
this.resultIterator = results.iterator();
this.last = results.get(results.size() - 1);
}

@Override
public T answer(InvocationOnMock invocation) throws Throwable {
if (resultIterator.hasNext()) {
return resultIterator.next();
}
return last;
}
}

关于mockito thenReturn 中的 Java 枚举列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33310960/

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