use of com.khmelenko.lab.varis.network.retrofit.github.GithubApiService in project Varis-Android by dkhmelenko.
the class TestNetworkModule method provideGitHubRestClient.
@Singleton
@Provides
public GitHubRestClient provideGitHubRestClient() {
GitHubRestClient gitHubRestClient = Mockito.mock(GitHubRestClient.class);
GithubApiService githubApiService = Mockito.mock(GithubApiService.class);
Mockito.when(gitHubRestClient.getApiService()).thenReturn(githubApiService);
return gitHubRestClient;
}
Aggregations