public E eqIgnoreAll(Object expected) {
if (expected instanceof Matcher) {
throw new AssertionError("please use method[propertyMatch(String, Matcher)]");
}
ReflectionEqualMatcher matcher = new ReflectionEqualMatcher(expected, new EqMode[] { EqMode.IGNORE_ORDER,
EqMode.IGNORE_DEFAULTS, EqMode.IGNORE_DATES });
return this.assertThat(matcher);
}