Skip to content

Instantly share code, notes, and snippets.

@kikers25
Created January 8, 2017 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kikers25/97493a56367617e1bbda9bbd6e673ac0 to your computer and use it in GitHub Desktop.
Save kikers25/97493a56367617e1bbda9bbd6e673ac0 to your computer and use it in GitHub Desktop.
Unit tests with dates 3
public class User {
private Date dateOfBirth;
public Date getDateOfBirth() {
return dateOfBirth;
}
public User setDateOfBirth(Date day_of_birthday) {
this.dateOfBirth = day_of_birthday;
return this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment