0

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

1 回答 1

0

可以对任何对象进行模拟。对于第三方广告服务器,我们可以启动模拟服务器。这解决了问题。

于 2017-08-02T01:52:40.390 回答