Mockito: how to stub getter setter(Mockito:如何存根 getter setter)
问题描述
我是 Mockito 的新手,我想知道如何存根获取/设置对.
I am kind of new to Mockito and I was wondering how I could stub a get/set pair.
例如
public interface Dummy {
public String getString();
public void setString(String string);
}
如何使它们正常运行:如果在测试的某个地方调用 setString("something");
我希望 getString()
返回something".这是可行的还是有更好的方法来处理这种情况?
How can I make them behave properly: if somewhere in a test I invoke setString("something");
I would like getString()
to return "something". Is that feasable or is there a better way to handle such cases?
推荐答案
我还希望 getter 返回最近 setter 调用的结果.
I also wanted the getter to return the result of the recent setter-call.
拥有
class Dog
{
private Sound sound;
public Sound getSound() {
return sound;
}
public void setSound(Sound sound) {
this.sound = sound;
}
}
class Sound
{
private String syllable;
Sound(String syllable) {
this.syllable = syllable;
}
}
我使用以下方法将 setter 连接到 getter:
I used the following to connect the setter to the getter:
final Dog mockedDog = Mockito.mock(Dog.class, Mockito.RETURNS_DEEP_STUBS);
// connect getter and setter
Mockito.when(mockedDog.getSound()).thenCallRealMethod();
Mockito.doCallRealMethod().when(mockedDog).setSound(Mockito.any(Sound.class));
这篇关于Mockito:如何存根 getter setter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Mockito:如何存根 getter setter


基础教程推荐
- 存储 20 位数字的数据类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01