Skip to content

Instantly share code, notes, and snippets.

@vicenterocha
Created April 16, 2015 10:44
Show Gist options
  • Save vicenterocha/6aed875f83b15b5de4c6 to your computer and use it in GitHub Desktop.
Save vicenterocha/6aed875f83b15b5de4c6 to your computer and use it in GitHub Desktop.
@Mocked
IDRemoteServices remote;
new StrictExpectations() {
{
remote = new IDRemoteServices();
remote.loginUser(USERNAME, PASSWORD);
result = throw EXCEPCAO;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment