Consider a method signature like:
public String myFunction(String abc);
Can Mockito help return the same string that the method received?
feedback
|
|
You can create an Answer in Mockito. Let's assume, we have an interface named Application with a method myFunction.
Here is the test method with a Mockito answer:
| |||||||||||||
feedback
|
|
I had a very similar problem. The goal was to mock a service that persists Objects and can return them by their name. The service looks like this:
The service mock uses a map to store the Room instances.
We can now run our tests on this mock. For example:
| ||||
|
feedback
|
|
I use something similar (basically it's the same approach). Sometimes it's useful to have a mock object return pre-defined output for certain inputs. That goes like this:
| ||||
|
feedback
|
| |||
feedback
|