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