DateParterMatcher matcher = new DateParterMatcher(Integer.valueOf(value), type);
return this.assertThat(matcher);
}
public IDateAssert<T> eqByFormat(String expected, String format) {
DateFormatMatcher matcher = new DateFormatMatcher(format, expected);
return this.assertThat(matcher);
}