我使用Retrofit爲我的REST API實現了Java客戶端。客戶端是一個簡單的Java應用程序,而不是一個Android應用程序。我如何爲我的Java客戶端編寫單元測試?以下是我的服務班之一。如何測試使用Retrofit實現的REST客戶端
public interface CountryService {
/**
* Returns country list.
*
* @param sortby
* Optional; Sorting order of list. Pass null to ignore.
*
* @return Countries object with list of countries.
*
* @throws SRSRetrofitException
*/
@GET(SRSClientConstants.SLASH + SRSClientConstants.RESOURCE_COUNTRY)
public Countries getCountries(@Query("sortby") String sortby)
throws SRSRetrofitException;
}
這看起來像[此問題]的副本(http://stackoverflow.com/q/17544751/515948)。 –
我最終實現了這個問題的答案。 – TechCrunch