EasyMockを介してサードパーティ API をモックする方法は?
例: 2 クラス - Employee
- 私たちのクラス、NPECustomer
- サードパーティのクラス
Employee
次のコードでhascreateCustomer
メソッドがあると仮定します
createCustomer(Employee emp) {
NPECustomer customer = new NPECustomer();
customer.add
customer.finalize
more customer. method and it goes on...
- 問題は、簡単なモックを介してサードパーティの API をモックする方法です。
- サードパーティの API をモックすることが実現不可能または面倒な場合、上記の問題を解決する別の方法は何ですか?