Skip to content

Instantly share code, notes, and snippets.

@albertusdev
Created March 20, 2019 15:18
Show Gist options
  • Save albertusdev/fa0ee092a90b7f7ccf05fc68a09aca88 to your computer and use it in GitHub Desktop.
Save albertusdev/fa0ee092a90b7f7ccf05fc68a09aca88 to your computer and use it in GitHub Desktop.
when(mockObject.nameOfFunctionToTest()).thenReturn(objectToBeReturned);
when(mockObject.nameOfFunctionToTest()).thenThrows(errorToBeReturned);
when(mockObject.nameOfFunctionToTest()).thenAnswer(functionToBeExecutedAndReturnsSomeValueWithTheSameTypeWhenMethodIsCalled);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment