Created
September 18, 2013 20:39
-
-
Save unclejamal/6615321 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
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