gpt4 book ai didi

java - 如何正确模拟 UriInfo?

转载 作者:行者123 更新时间:2023-12-02 04:44:34 25 4
gpt4 key购买 nike

这是我的代码:

import java.net.URI;
import javax.ws.rs.core.UriInfo;
(...)

UriInfo mockUriInfo;
String url = "test";

mockUriInfo = mock(UriInfo.class);
when(mockUriInfo.getRequestUri()).then(new URI(url));

不幸的是,我遇到了一个错误:

then(org.mockito.stubbing.Answer) cannot be applied to (java.new URI)

知道如何解决吗?

最佳答案

您需要使用 thenReturn 而不是 then:

when(mockUriInfo.getRequestUri()).thenReturn(new URI(url));

如果您想使用 then (这是 thenAnswer 的同义词,您需要将答案作为参数传递:

when(mockUriInfo.getRequestUri()).then(new Answer<Integer>() {
public URI answer(InvocationOnMock invocation) throws Throwable {
return new URI(url);
}
}

关于java - 如何正确模拟 UriInfo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29773668/

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