内容简介:翻译自:https://stackoverflow.com/questions/7653263/easymock-mock-out-a-constructor-call-in-java
我在这个板上看了类似的问题,但没有一个回答我的问题.这听起来很奇怪,但是可以在你正在嘲笑的对象上模拟一个构造函数调用.
例:
class RealGuy { .... public void someMethod(Customer customer) { Customer customer = new Customer(145); } } class MyUnitTest() { public Customer customerMock = createMock(Customer.class) public void test1() { //i can inject the mock object, but it's still calling the constuctor realGuyobj.someMethod(customerMock); //the constructor call for constructor makes database connections, and such. } }
我怎么能期待一个构造函数调用?我可以更改Customer构造函数调用以使用newInstance,但我不确定这是否有帮助.我无法控制新Customer(145)构造函数的主体.
这可能吗?
你可以使用EasyMock 3.0及以上版本.
Customer cust = createMockBuilder(Customer.class) .withConstructor(int.class) .withArgs(145) .addMockedMethod("someMethod") .createMock();
翻译自:https://stackoverflow.com/questions/7653263/easymock-mock-out-a-constructor-call-in-java
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- WPF 类型的构造函数执行符合指定的绑定约束的调用时引发了异常
- 少说话多写代码之Python学习047——类的成员(调用父类构造函数)
- Java类 静态代码块、构造代码块、构造函数初始化顺序
- TS 的构造签名和构造函数类型是啥?傻傻分不清楚
- 只有你能 new 出来!.NET 隐藏构造函数的 n 种方法(Builder Pattern / 构造器模式)
- 构造函数、原型、原型链、继承
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python for Everyone
Cay S. Horstmann、Rance D. Necaise / John Wiley & Sons / 2013-4-26 / GBP 181.99
Cay Horstmann's" Python for Everyone "provides readers with step-by-step guidance, a feature that is immensely helpful for building confidence and providing an outline for the task at hand. "Problem S......一起来看看 《Python for Everyone》 这本书的介绍吧!