Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Last active April 10, 2020 12:44
Show Gist options
  • Save ashkrit/e60c7d400fc07059e5287577ec95aa4d to your computer and use it in GitHub Desktop.
Save ashkrit/e60c7d400fc07059e5287577ec95aa4d to your computer and use it in GitHub Desktop.
@RegisterExtension
JUnit5Mockery context = new JUnit5Mockery();
context.checking(new Expectations() {{
oneOf(currencyConverter).convert(1, "SGD", "INR");
will(returnValue(50d));
oneOf(bankService).deposit(100d, account);
will(returnValue("99999"));
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment