Skip to content

Instantly share code, notes, and snippets.

@vyo
Created June 8, 2017 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vyo/e5f2f2a727103d1ac0009d21a161d81a to your computer and use it in GitHub Desktop.
Save vyo/e5f2f2a727103d1ac0009d21a161d81a to your computer and use it in GitHub Desktop.
private EchoController echoController;
// ...
@Before
public void setup() {
initMocks(this);
when(echoService.reverse(eq("input"))).thenReturn("tupni");
echoController = new EchoController(echoService);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment