Created
May 19, 2020 01:44
-
-
Save vepo/fe76292dda1b8f4270ae4896ae0e245b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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