Guest User

Untitled

a guest
Dec 8th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @Test(expected = RuntimeException.class)
  2. public void userLoginWhereUserIsNotFound() {
  3. String username = "kentb";
  4. String password = "tdd-1s-c00l";
  5. UserService userService = new UserService();
  6.  
  7. User user = userService.authenticate(username, password);
  8. }
Add Comment
Please, Sign In to add comment