如何通过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...
- 现在的问题是如何通过easy Mock来模拟第三方API
- 如果模拟第三方 API 不可行或繁琐,有哪些替代方法可以解决上述问题