A function that hooks to another function call.

when(view.getUsername()).thenReturn("abc");
when(model.isFound("abc")).thenReturn(true);

Follow-Ups