Package org.assertj.core.error
Class ShouldBeInThePast
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldBeInThePast
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeInThePast extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that aDateis in the past failed.- Author:
- Joel Costigliola
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldBeInThePast(Date actual, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldBeInThePast(Date actual)Creates a new.ShouldBeInThePaststatic ErrorMessageFactoryshouldBeInThePast(Date actual, ComparisonStrategy comparisonStrategy)Creates a new.ShouldBeInThePast-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldBeInThePast
private ShouldBeInThePast(Date actual, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldBeInThePast
public static ErrorMessageFactory shouldBeInThePast(Date actual, ComparisonStrategy comparisonStrategy)
Creates a new.ShouldBeInThePast- Parameters:
actual- the actual value in the failed assertion.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldBeInThePast
public static ErrorMessageFactory shouldBeInThePast(Date actual)
Creates a new.ShouldBeInThePast- Parameters:
actual- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory.
-
-