Hamcrest library for date

Viewed 1791

I have been looking around but I have not found anything useful. Are there any 3rd party libraries that work with hamcrest that have extensive date matching?

Specifically I am looking for matchers along the lines of:

assertThat(myDate, is(withinMinutes(sourceDate, 10)));
assertThat(myDate, is(afterDate(sourceDate)));
assertThat(myDate, is(betweenDates(startDate, endDate)));

I wanted to see if there was anything out there before I rolled my own.

2 Answers
Related