Mockito.mock()



This method is used to create mock object for any class and interface.

Example:
@Test
public void test_mockMethod(){
CHello local =  Mockito.mock(CHello.class);
}