Skip to content

Instantly share code, notes, and snippets.

@pfrozi
Last active July 12, 2017 17:11
Show Gist options
  • Save pfrozi/a5e82ecf21eacc84a4044a950cd346f0 to your computer and use it in GitHub Desktop.
Save pfrozi/a5e82ecf21eacc84a4044a950cd346f0 to your computer and use it in GitHub Desktop.
doAnswer(new Answer() {
public Object answer(InvocationOnMock invocation) {
Object[] args = invocation.getArguments();
((objectToAlter)args[0]).campo1 = 1;
((objectToAlter)args[0]).campo2 = 2;
return null;
}})
.when(xxxx).method(entry());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment