Package org.assertj.core.error
Class ShouldNotBeBetween
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldNotBeBetween
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldNotBeBetween extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that aDateis not between start - end dates (inclusive or not) failed.- Author:
- Joel Costigliola
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd)Creates a new.ShouldNotBeBetweenstatic ErrorMessageFactoryshouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd, ComparisonStrategy comparisonStrategy)Creates a new.ShouldNotBeBetween-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldNotBeBetween
private ShouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldNotBeBetween
public static ErrorMessageFactory shouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd, ComparisonStrategy comparisonStrategy)
Creates a new.ShouldNotBeBetween- Parameters:
actual- the actual value in the failed assertion.start- the lower boundary of date period.end- the lower boundary of date period.inclusiveStart- whether to include start date in period.inclusiveEnd- whether to include end date in period.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldNotBeBetween
public static ErrorMessageFactory shouldNotBeBetween(Date actual, Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd)
Creates a new.ShouldNotBeBetween- Parameters:
actual- the actual value in the failed assertion.start- the lower boundary of date period.end- the lower boundary of date period.inclusiveStart- whether to include start date in period.inclusiveEnd- whether to include end date in period.- Returns:
- the created
ErrorMessageFactory.
-
-