Unit Test of Retrofit 2 api call with Mockito

后端 未结 2 1089
不思量自难忘°
不思量自难忘° 2021-01-12 11:18

I need some advices on how to mock a rest api. My application is in MVP architecture.

My interface for API:

public interface MyAPI {

    @GET(\"{cmd         


        
2条回答
  •  -上瘾入骨i
    2021-01-12 11:39

    Thanks for @Ilya Tretyakov, I came out this solution:

    private ArgumentCaptor> subscriberArgumentCaptor;
    
    @Test
    public void testLoginWithCorrectUserNameAndPassword() throws Exception {
        mLoginPresenter.login("user@email.com","password");
        // create the mock Response object
        Response response = ......
    
        verify(service, times(1)).login(
            subscriberArgumentCaptor.capture(),
            stringUserNameCaptor.capture(),
            stringPasswordCaptor.capture()
        );
    
        subscriberArgumentCaptor.getValue().onNext(response);
        verify(view).loginSuccess();
    }
    

提交回复
热议问题