腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(8432)
视频
沙龙
1
回答
Mockito - when
thenReturn
、
、
我是Mockito库的新手,我不能理解以下语法:在我定义测试之前-实际的测试是-我不是只将第一行代码(when...
thenReturn
)的函数返回值设置为RETURN_VALUE吗?
浏览 3
提问于2017-07-21
得票数 15
回答已采纳
1
回答
如何用Mockito
thenReturn
模拟
thenReturn
错误响应?
、
、
、
、
MapsResponse> response = retrofit2.Response.error(500, ResponseBody.create(null, content))它说它不能解决方法‘
thenReturn
.’
浏览 5
提问于2022-01-01
得票数 0
1
回答
模拟结果集getTimeStamp不适用于超过1行的行
、
、
when(statement.getResultSet()).
thenReturn
(resultSet); when(resultSet.getString("HIST_ID"))
浏览 0
提问于2017-03-23
得票数 2
1
回答
Mockito ().
thenReturn
不工作
、
、
、
、
下面的代码总是返回redirect:/welcome,尽管我有when(result.hasErrors()).
thenReturn
(true);,它应该返回add。也许我做错了什么。); public void testCreateBad() throws Exception { when(result.hasErrors()).
thenReturn
浏览 3
提问于2013-09-24
得票数 0
回答已采纳
1
回答
Apache POI行迭代问题
、
")).
thenReturn
(mockSheet); when(mockRow.createCell(2)).
thenReturn
(mockCell3); when(mockRow.getCell); when(cellIterator.hasNext()).
then
浏览 55
提问于2021-10-20
得票数 0
4
回答
当请求体存在时,模拟WebClient帖子
、
、
、
、
(requestBodyUriSpec); when(responseSpec.bodyToMono(ArgumentMatchers.(any())).
thenReturn
(requestHeadersSpec); when(requestBodySpec.retrieve())
浏览 15
提问于2019-11-17
得票数 8
回答已采纳
1
回答
当我有太多的Mockito when().
thenReturn
()来模拟这种情况时,这是否意味着有什么问题?
、
、
、
如下所示: when(config.doubleValue(param2).
thenReturn
()).
thenReturn
(90.0); when(location1.getLowerBoundary()).
thenReturn
(12.0);
浏览 1
提问于2018-12-08
得票数 0
1
回答
Mockito顽固性-返回重复值X次
、
、
我知道,通过在Mockito中创建存根,可以从模拟返回连续值,如下所示:或是否可以为特定的返回值指定重复编号就像这样: when(mockedObject.do
浏览 1
提问于2022-09-20
得票数 0
回答已采纳
1
回答
如何正确模拟bean HikariDataSource?
、
、
我使用Mockito编写了集成测试,但它在设置到数据库的连接时工作。实际上,测试只是检查访问某些端点的可能性,而与数据访问层无关。所以我还不需要数据库。数据库关闭时测试失败的原因--当spring实例化上下文时,HikariDatasource检查到数据库的连接。模拟不会返回连接,并且会导致应用程序失败。我找到的解决方案是在内存数据库中使用hsql,但对我来说,它看起来像是在工作。可能还有其他解决方案提供一些假数据?
浏览 1
提问于2019-12-22
得票数 2
回答已采纳
2
回答
dynamodb如何模拟映射器?
、
、
DynamoDBMapper.class);when(mapper.query(any(), any())).
thenReturn
(testList);Error:(133, 37) java: no suitable method found for
thenReturn
(java.util.List<
浏览 6
提问于2015-12-15
得票数 2
回答已采纳
1
回答
超出Junit java.lang.OutOfMemoryError GC开销限制
、
、
(binaryChars[index++] == '0'); when(myMockObj.method5()).
thenReturn
(binaryCharswhen(myMockObj.method7()).
thenReturn
(
浏览 27
提问于2019-02-21
得票数 1
回答已采纳
1
回答
为什么我在尝试模拟WebClient呼叫时在bodyValue上收到NPE?
、
、
、
when(webClientMock.post()).
thenReturn
(requestBodyUriMock); when(requestBodyUriMock.bodyValue(any(MyRequest.class))).
thenReturn
(requestHeadersMock); when(requestHeadersM
浏览 33
提问于2020-10-31
得票数 0
回答已采纳
3
回答
使用mockito框架在单元测试中返回NullPointerException的多选条件查询
、
、
、
、
(mockSession); Mockito.when(query.from(TableA.class)).
thenReturn
(mockARoot); Mockito.when(qu
浏览 154
提问于2021-10-10
得票数 0
2
回答
Java中另一个函数调用中的模拟函数调用
、
、
如何模拟以下语句:期望对整个结果进行模拟,以便将某个值返回给var
浏览 6
提问于2022-11-07
得票数 1
2
回答
Mockito/PowerMockito:模拟最终静态成员不能以不同的方法返回不同的值
,我想在不同的测试方法中得到不同的值: PowerMockito.when(externalService.getSomething).
thenReturn
("aaa"); PowerMockito.when(externalService.getSomething).
thenReturn
("bbb"); PowerM
浏览 6
提问于2017-09-20
得票数 0
回答已采纳
1
回答
Mockito中的多个
thenReturn
是如何工作的?
、
、
我有一行使用Mockito的代码:上述语句是否与以下语句相同:when(mock.method()).
thenReturn
(bar).thenThrow(new Except
浏览 8
提问于2021-04-08
得票数 0
2
回答
模拟Java中的文件-模拟内容- Mockito
、
、
(Boolean.FALSE); when(badHTML.canWrite()).
thenReturn
()).
thenReturn
(Boolean.FALSE); when(badHTML.getName()).
thenReturn
("bad.html");
浏览 347
提问于2013-07-17
得票数 39
回答已采纳
1
回答
Mockito无效使用Matcher异常
、
、
(mockResults); Mockito.when(mockResults.next()).
thenReturn
(mockSearchResults); Mockito.when(mockAttr
浏览 2
提问于2016-02-01
得票数 1
1
回答
模拟通过JSON Post添加用户的Controller
、
、
、
、
我正在尝试创建一个模拟控制器,但在捕获参数时一直出现错误。上面写着通缉但没有被调用。我仍然对Mockito和Junit以及它应该如何正确工作感到困惑。 public void testAddUserController() throws Exception { jsonObject.put("username", "User
浏览 0
提问于2019-01-31
得票数 0
1
回答
用PowerMockito测试Unirest
、
、
、
、
Unirest.class); when(Unirest.get("12345")).
thenReturn
(getRequest); when(httpResponse.getStatus()).
thenReturn
(200); assertEquals(
浏览 4
提问于2019-04-04
得票数 0
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Java单元测试技巧之PowerMock
Redis+lua进行类似秒杀的实现
缓存利器(五)、缓存和数据库的交互
Android测试:Mockito and Robolectric
“用调评” 一体化:生成上下文数据集,改善 AI 测试生成质量
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券