我的getUserDetails類將User(custome類)和string作爲參數並返回User。如果我使用匹配器的Mockito如下:mockito引發InvalidUseOfMatchersException
when(authService.getUserDetails(any(User.class),anyString())).thenReturn(any(User.class));
它給了我InvalidUseOfMatchersException 2點的匹配預期,3中。我不能使用上述表達式嗎?