最佳答案
我面临的问题是 Matchers.anyObject()
返回 null
。当用于模拟只接受非空类型的方法时,它会引发“应该不为空”异常。
`when`(mockedBackend.login(anyObject())).thenAnswer { invocationOnMock -> someResponse }
模仿方法:
public open fun login(userCredentials: UserCredentials): Response