Package org.fest.assertions.error
Class ShouldBeInTheFuture
- java.lang.Object
-
- org.fest.assertions.error.BasicErrorMessageFactory
-
- org.fest.assertions.error.ShouldBeInTheFuture
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeInTheFuture extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that aDate
is in the future failed.- Author:
- Joel Costigliola
-
-
Field Summary
-
Fields inherited from class org.fest.assertions.error.BasicErrorMessageFactory
arguments, format
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldBeInTheFuture(java.util.Date actual)
Creates a newShouldBeInTheFuture
.static ErrorMessageFactory
shouldBeInTheFuture(java.util.Date actual, ComparisonStrategy comparisonStrategy)
Creates a newShouldBeInTheFuture
.-
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
-
-
-
Method Detail
-
shouldBeInTheFuture
public static ErrorMessageFactory shouldBeInTheFuture(java.util.Date actual, ComparisonStrategy comparisonStrategy)
Creates a newShouldBeInTheFuture
.- Parameters:
actual
- the actual value in the failed assertion.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldBeInTheFuture
public static ErrorMessageFactory shouldBeInTheFuture(java.util.Date actual)
Creates a newShouldBeInTheFuture
.- Parameters:
actual
- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-
-