Skip to content

Instantly share code, notes, and snippets.

@unclejamal
Created September 18, 2013 20:39
Show Gist options
  • Save unclejamal/6615321 to your computer and use it in GitHub Desktop.
Save unclejamal/6615321 to your computer and use it in GitHub Desktop.
public class FixedClock implements Clock {
private Date fixedNow;
@Override
public Date now() {
return fixedNow;
}
public void setNow(Date fixedNow) {
this.fixedNow = fixedNow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment