Last active
January 3, 2018 05:11
-
-
Save Adrianvdh/0c7d10fd9a2dc3149a73967fb0e24e48 to your computer and use it in GitHub Desktop.
Tdd examples from http://scholarcoder.com/1392/ttd-intro
This file contains 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
public class UserService { | |
public User authenicate(String username, String password) { | |
User user = new User(); | |
user.username = "adrianvdh"; | |
user.password = "hello123"; | |
return user; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment