55.1k views
1 vote
How to mock new object creation using mockito

1 Answer

4 votes

Final answer:

To mock new object creation using Mockito, use the 'when' and 'thenReturn' methods. This allows you to simulate the creation of a new object and control its behavior when certain methods are called.

Step-by-step explanation:

To mock new object creation using Mockito, you can use the when and thenReturn methods. First, create a mock object for the class you want to mock. Then, use the when method to specify what method call you want to mock and use the thenReturn method to specify the desired return value. Here's an example:

ClassToMock objectToMock = Mockito.mock(ClassToMock.class);
Mockito.when(objectToMock.methodToMock()).thenReturn(desiredReturnValue);

This allows you to simulate the creation of a new object and control its behavior when certain methods are called.

User Sgrgmngt
by
8.2k points