Skip to content

Instantly share code, notes, and snippets.

@tzachz
Created September 17, 2019 18:37
Show Gist options
  • Save tzachz/3cdf1a118be6600a3fb890837d69ce43 to your computer and use it in GitHub Desktop.
Save tzachz/3cdf1a118be6600a3fb890837d69ce43 to your computer and use it in GitHub Desktop.
Mockito gotcha: what went wrong
/* 1 */ val dependency: MyOtherService = mock[MyOtherService]
/* 2 */ when(dependency.getValue(any())).thenAnswer(answerSizeOfInputPlus(2))
/* 3 */ when(dependency.getValue(any())).thenAnswer(answerSizeOfInputPlus(3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment