Skip to content

Instantly share code, notes, and snippets.

@tzachz
Last active September 17, 2019 18:25
Show Gist options
  • Save tzachz/8f7522672827d1553ee2cfb173b7aa75 to your computer and use it in GitHub Desktop.
Save tzachz/8f7522672827d1553ee2cfb173b7aa75 to your computer and use it in GitHub Desktop.
Mockito gotcha: usecase
before {
// default for most tests:
when(dependency.getValue(any())).thenAnswer(produceDefaultAnswer())
}
"MyService.testedMethod" should "do something special" in {
// override default for this test:
when(dependency.getValue(any())).thenAnswer(produceSpecialAnswer())
// continue test...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment