コード:
public class AccountService(){
private ObjectMapper mapper = new ObjectMapper();
public Account getAccount(){
try {
ClientResponse response = RestUtility.getAccounts();
if(CLientResponse.OK.Status == response.getClientResponseStatus()){
return mapper.readValue(response.getEntity(String.class), Account.class)
}
} catch(Exception e){
log.error(e.getMessage(), e);
}
return null;
}
}
このサービスをモックするにはどうすればよいですか? RestUtility は静的ユーティリティであり、mockito でモックすることはできません。私が望むのは、メソッドが「モック」アカウントのリストを返すことだけです。このアーキテクチャでも可能ですか?