Package org.assertj.core.error
Class ShouldBeEqualWithTimePrecision
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldBeEqualWithTimePrecision
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeEqualWithTimePrecision extends BasicErrorMessageFactory
Creates anindicating that an assertion that verifies that two dates are equals up to a given precision failed.AssertionError- Author:
- William Delanoue, Joel Costigliola
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldBeEqualWithTimePrecision(Date actual, Date expected, TimeUnit precision)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description private static StringbuildErrorMessageTemplate(TimeUnit precision)static ErrorMessageFactoryshouldBeEqual(Date actual, Date expected, TimeUnit precision)Creates a new.ShouldBeEqualWithTimePrecision-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldBeEqual
public static ErrorMessageFactory shouldBeEqual(Date actual, Date expected, TimeUnit precision)
Creates a new.ShouldBeEqualWithTimePrecision- Parameters:
actual- the actual value in the failed assertion.expected- the expected value in the failed assertion.precision- theTimeUnitused to compare actual with expected.- Returns:
- the created
AssertionErrorFactory.
-
-