我有一個類,它具有返回列表未來的外部依賴關係。 如何模擬外部依賴?模擬外部依賴關係,返回列表的未來
public void meth() {
//some stuff
Future<List<String>> f1 = obj.methNew("anyString")
//some stuff
}
when(obj.methNew(anyString()).thenReturn("how to intialise some data here, like list of names")
也許'thenAnswer'是你所需要的,而不是'thenReturn'什麼。 [這個答案](https://stackoverflow.com/a/36627077/1744230)解釋了這兩者之間的區別。 – QBrute
可以詳細說明更多 – user304611