gpt4 book ai didi

java - 使用 Mockito 的 argThat() 匹配器导致 "method ambiguous for the type"错误

转载 作者:搜寻专家 更新时间:2023-11-01 01:41:21 26 4
gpt4 key购买 nike

我正在尝试模拟一个采用映射并将其他参数作为参数的方法。我的目标是匹配 map 条目。最初我将模拟定义为:

when(discoveryJobCatalogResourceAccessor.findResource(argThat(allOf(hasEntry("start", "testStart"), hasEntry("level", "testLevel"))), any(Integer.class),
any(Integer.class), any(String.class), any(String.class))).thenReturn(searchResponse);

这会导致以下错误:

The method findResource(Map<String,String>, Integer, Integer, String, String) is ambiguous for the type DiscoveryJobCatalogResourceAccessor

当我将 argThat() 替换为 any(HashMap.class) 时,如下所示:

when(discoveryJobCatalogResourceAccessor.findResource(any(HashMap.class), any(Integer.class),                any(Integer.class), any(String.class), any(String.class))).thenReturn(searchResponse);

错误消失了,但在这种情况下我无法匹配 map 值。似乎 Mockito 的 argThat() 导致了歧义。我想知道是否有一种方法可以在不导致错误的情况下使用 argThat()

最佳答案

您可以转换为所需的类型

when(discoveryJobCatalogResourceAccessor.findResource(HashMap<String,String>)argThat(allOf(hasEntry("start", "testStart"), hasEntry("level", "testLevel"))), any(Integer.class),
any(Integer.class), any(String.class), any(String.class))).thenReturn(searchResponse);

关于java - 使用 Mockito 的 argThat() 匹配器导致 "method ambiguous for the type"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35726148/

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