Mocking
Create a Mock
Service service;
service = Mockito.mock(Service.class);
Set Return
Mockito.when(service.operation(ArgumentMatchers.any()).thenReturn(values);
Last updated
Was this helpful?
Service service;
service = Mockito.mock(Service.class);
Mockito.when(service.operation(ArgumentMatchers.any()).thenReturn(values);
Last updated
Was this helpful?