Skip to content

Instantly share code, notes, and snippets.

@vepo
Created May 18, 2020 21:33
Show Gist options
  • Save vepo/1e7f73dacc791ead30fc5bc90fd9d306 to your computer and use it in GitHub Desktop.
Save vepo/1e7f73dacc791ead30fc5bc90fd9d306 to your computer and use it in GitHub Desktop.
User user = new User();
user.setName(randomString());
user.setPassword(randomString());
userService.create(user)
List<User> allUsers = userService.list();
assertThat(allUsers).hasSize(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment