mockito 如何创建模拟对象的实例 [英] How does mockito create an instance of the mock object

查看:41
本文介绍了mockito 如何创建模拟对象的实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我创建一个 Employee 类的模拟对象时.它不调用 Employee 对象的构造函数.我知道 Mockito 在内部使用 CGLIb 和反射,创建一个代理类,将类扩展到模拟.如果不调用employee的构造函数,employee类的mock实例是如何创建的?

解决方案

Mockito 使用 CGLib 生成类对象.但是要实例化此类对象,它使用 Objenesis http://objenesis.org/tutorial.html

Objenesis 能够使用各种技术(即调用 ObjectStream.readObject 等)在没有构造函数的情况下实例化对象.

When i create a mock object of say class Employee. It doesnt call the constructor of Employee object. I know internally Mockito uses CGLIb and reflection, creates a proxy class that extends the class to mock. If it doesnt call the constructor of employee how is the mock instance of employee class created ?

解决方案

Mockito uses CGLib to generate class object. However to instantiate this class object it uses Objenesis http://objenesis.org/tutorial.html

Objenesis is able to instantiate object without constructor using various techniques (i.e. calling ObjectStream.readObject and similar).

这篇关于mockito 如何创建模拟对象的实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆