Skip to content

Instantly share code, notes, and snippets.

@vepo
Created May 19, 2020 01:44
Show Gist options
  • Save vepo/fe76292dda1b8f4270ae4896ae0e245b to your computer and use it in GitHub Desktop.
Save vepo/fe76292dda1b8f4270ae4896ae0e245b to your computer and use it in GitHub Desktop.
class UserTests {
@Test
@DisplayName("It SHOULD allow create Users without a name")
void createWithoutNameTest() {
// Do the tests
fail();
}
@Test
@DisplayName("It SHOULD only requires username and password")
void createWithMinimumPropertiesTest() {
// Do the tests
fail();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment