Hamcrest Date Matchers

smp7d picture smp7d · Dec 23, 2011 · Viewed 32.9k times · Source

I need to test before/after on dates in a certain test case. I'd like to use Hamcrest matchers if possible.

Are there any matchers for Hamcrest (Java) for working with Dates? If so, what package/class would I find the particular date matcher functions in?

Answer

Tom Anderson picture Tom Anderson · Dec 23, 2011

The OrderingComparison::greaterThan matcher will work on any type which is comparable to itself (it's in the org.hamcrest.number package, but it's not actually number-specific). Date is such a type.