可以使用mockito-flex来模拟getter和setter吗?
需要知道 Mockito-flex 是否支持模拟 getter 和 setter。谢谢。
Need to know if Mockito-flex supports mocking getters and setters. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。只要被模拟的类和 getter/setter 方法是非最终的,就可以模拟 getter 和 setter。
Yes. Getters and setters can be mocked as long as the class being mocked and the getter/setter methods are non-final.
是的。这是一个示例:
其中 IFixedList 有
然后
将跟踪 'len='+10;
Yes. Here's an example:
Where IFixedList has
Then
will trace 'len='+10;