gpt4 book ai didi

android - Power mockito 中的 TooManyConstructorsFoundException

转载 作者:太空狗 更新时间:2023-10-29 15:38:02 25 4
gpt4 key购买 nike

我曾尝试模拟 JSONArray,也尝试过抑制构造函数。但没有一种解决方案对我有用。

 JSONArray mockJSONArray=PowerMokcito.mock(JSONArray.class);, 

whenNew(JSONArray.class).withNoArguments().thenReturn(mockJSONArray);
whenNew(JSONArray.class).withArguments(anyObject()).thenReturn(mockJSONArray);

任何人都可以帮助解决这个问题吗?提前致谢

最佳答案

解决方案可以从异常日志本身识别。
'请指定参数参数类型'。

异常跟踪:

org.powermock.reflect.exceptions.TooManyConstructorsFoundException: 
Several matching constructors found, please specify the argument parameter types so that PowerMock can determine which method you're referring to.
Matching constructors in class org.json.JSONArray were:
org.json.JSONArray( java.lang.Object.class )
org.json.JSONArray( java.util.Collection.class )

下面是当存在多个构造函数时如何使用参数类型的示例。

    @Before
public void setUp() throws Exception {

// Mock JSONArray object with desired value.
JSONArray mockJSONArray=PowerMockito.mock(JSONArray.class);
String mockArrayStr = "[ { \"name\" : \"Tricky solutions\" } ]";
PowerMockito.when(mockJSONArray.getString(0)).thenReturn(mockArrayStr);

// mocking constructor
PowerMockito.whenNew(JSONArray.class).withParameterTypes(String.class)
.withArguments(Matchers.any()).thenReturn(mockJSONArray);

}

@Test
public void testJSONArray() throws Exception {

String str = "[ { \"name\" : \"kswaughs\" } ]";

JSONArray arr = new JSONArray(str);

System.out.println("result is : "+arr.getString(0));

}

Output :
result is : [ { "name" : "Tricky solutions" } ]

关于android - Power mockito 中的 TooManyConstructorsFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32512091/

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