Package org.assertj.core.error
Class ShouldBeAfterYear
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeAfterYear
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a
Date
is after given year failed.-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldBeAfterYear
(Date actual, int year, ComparisonStrategy comparisonStrategy) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldBeAfterYear
(Date actual, int year) Creates a newShouldBeAfterYear
.static ErrorMessageFactory
shouldBeAfterYear
(Date actual, int year, ComparisonStrategy comparisonStrategy) Creates a newShouldBeAfterYear
.Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldBeAfterYear
-
-
Method Details
-
shouldBeAfterYear
public static ErrorMessageFactory shouldBeAfterYear(Date actual, int year, ComparisonStrategy comparisonStrategy) Creates a newShouldBeAfterYear
.- Parameters:
actual
- the actual value in the failed assertion.year
- the year to compare the actual date's year to.- Returns:
- the created
ErrorMessageFactory
.
-
shouldBeAfterYear
Creates a newShouldBeAfterYear
.- Parameters:
actual
- the actual value in the failed assertion.year
- the year to compare the actual date's year to.- Returns:
- the created
ErrorMessageFactory
.
-