问题描述
我有一个方法调用,我想用 mockito 模拟.首先,我创建并注入了一个对象实例,将在该实例上调用该方法.我的目标是验证方法调用中的对象之一.
I have a method call which I want to mock with mockito. To start with I have created and injected an instance of an object on which the method will be called. My aim is to verify one of the object in method call.
mockito 是否允许您在调用 mock 方法时断言或验证对象及其属性?
Is there a way that mockito allows you to assert or verify the object and it's attributes when the mock method is called?
例子
Mockito.verify(mockedObject)
.someMethodOnMockedObject(
Mockito.<SomeObjectAsArgument>anyObject())
我不想做 anyObject() 我想检查参数对象是否包含一些特定字段
Instead of doing anyObject() i want to check that argument object contains some particular fields
Mockito.verify(mockedObject)
.someMethodOnMockedObject(
Mockito.<SomeObjectAsArgument>**compareWithThisObject()**)
推荐答案
添加到 Mockito 的新功能使这变得更加容易,
New feature added to Mockito makes this even easier,
ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class);
verify(mock).doSomething(argument.capture());
assertEquals("John", argument.getValue().getName());
查看 Mockito 文档
Take a look at Mockito documentation
如果有多个参数,并且只需要捕获单个参数,请使用其他 ArgumentMatchers 包装其余参数:
In case when there are more than one parameters, and capturing of only single param is desired, use other ArgumentMatchers to wrap the rest of the arguments:
verify(mock).doSomething(eq(someValue), eq(someOtherValue), argument.capture());
assertEquals("John", argument.getValue().getName());
这篇关于使用 mockito 验证对象属性值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)