Skip to content

Instantly share code, notes, and snippets.

@Adrianvdh
Last active December 24, 2017 06:50
Show Gist options
  • Save Adrianvdh/ee330b5e62f922a8fbc293325c361c06 to your computer and use it in GitHub Desktop.
Save Adrianvdh/ee330b5e62f922a8fbc293325c361c06 to your computer and use it in GitHub Desktop.
@Test(expected = RuntimeException.class)
public void userLoginWhereUserIsNotFound() {
String username = "kentbeck";
String password = "letmein";
UserService userService = new UserService();
User user = userService.authenticate(username, password);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment