如何通过 EasyMock 模拟第三方API?
例:
2个班级 - Employee
- 我们的班级,NPECustomer
- 第三方班级
使用以下代码假设Employee
具有createCustomer
方法
createCustomer(Employee emp) {
NPECustomer customer = new NPECustomer();
customer.add
customer.finalize
more customer. method and it goes on...
答案 0 :(得分:0)
可以对任何对象进行模拟。对于第三方广告服务器,我们可以启动模拟服务器这解决了这个问题。