How do I mock a method inherited from an abstract class with EasyMock?

淺唱寂寞╮ 提交于 2019-12-05 10:10:26

I think it's not related to abstract classes and so on. It's caused by the fact that EasyMock can't mock final methods. From the EasyMock documentation:

Final methods cannot be mocked. If called, their normal code will be executed

So, you need to make your method non-final, or use some other approach to testing that doesn't require mocking it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!