Class DateAssert
- All Implemented Interfaces:
Assert<DateAssert,
,Date> Descriptable<DateAssert>
,ExtensionPoints<DateAssert,
Date>
Date
s.
To create a new instance of this class invoke
.
Assertions.assertThat(Date)
Date
and the other is a String
representing a Date.For the latter, the default format follows ISO 8901 : "yyyy-MM-dd", user can override it with a custom format by calling
withDateFormat(DateFormat)
.The user custom format will then be used for all next Date assertions (i.e not limited to the current assertion) in the test suite.
To turn back to default format, simply call
withIsoDateFormat()
.- Author:
- Tomasz Nurkiewicz (thanks for giving assertions idea), Joel Costigliola, Mikhail Mazursky
-
Field Summary
Fields inherited from class org.fest.assertions.api.AbstractAssert
actual, myself
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionhasTime
(long timestamp) Verifies that the actualDate
has the same time as the given timestamp.Same assertion asisAfter(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Verifies that the actualDate
is strictly after the given one.isAfterOrEqualsTo
(String dateAsString) Same assertion asisAfterOrEqualsTo(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isAfterOrEqualsTo
(Date other) Verifies that the actualDate
is after or equals to the given one.isAfterYear
(int year) Verifies that the actualDate
is strictly after the given year.Same assertion asisBefore(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Verifies that the actualDate
is strictly before the given one.isBeforeOrEqualsTo
(String dateAsString) Same assertion asisBeforeOrEqualsTo(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isBeforeOrEqualsTo
(Date other) Verifies that the actualDate
is before or equals to the given one.isBeforeYear
(int year) Verifies that the actualDate
is strictly before the given year.Same assertion asisBetween(Date, Date)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Same assertion asisBetween(Date, Date, boolean, boolean)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Verifies that the actualDate
is in [start, end[ period (start included, end excluded).Verifies that the actualDate
is in the given period defined by start and end dates.
To include start in the period set inclusiveStart parameter totrue
.
To include end in the period set inclusiveEnd parameter totrue
.Same assertion asisCloseTo(Date, long)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Verifies that the actualDate
is close to the other date by less than delta (expressed in milliseconds), if difference is equals to delta it's ok.Same assertion asisEqualTo(Date date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Same assertion asAssert.isIn(Object...)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameDayAs
(String dateAsString) Same assertion asisInSameDayAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameDayAs
(Date other) Verifies that actual and givenDate
are chronologically in the same day of month (and thus in the same month and year).isInSameHourAs
(String dateAsString) Same assertion asisInSameHourAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameHourAs
(Date other) Verifies that actual and givenDate
are chronologically in the same hour (and thus in the same day, month and year).isInSameMinuteAs
(String dateAsString) Same assertion asisInSameMinuteAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameMinuteAs
(Date other) Verifies that actual and givenDate
are chronologically in the same minute (and thus in the same hour, day, month and year).isInSameMonthAs
(String dateAsString) Same assertion asisInSameMonthAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameMonthAs
(Date other) Verifies that actual and givenDate
are chronologically in the same month (and thus in the same year).isInSameSecondAs
(String dateAsString) Same assertion asisInSameSecondAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameSecondAs
(Date other) Verifies that actual and givenDate
are chronologically in the same second (and thus in the same minute, hour, day, month and year).isInSameYearAs
(String dateAsString) Same assertion asisInSameYearAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isInSameYearAs
(Date other) Verifies that actual and givenDate
are in the same year.Verifies that the actualDate
is strictly in the future.Verifies that the actualDate
is strictly in the past.isInWithStringDateCollection
(Collection<String> datesAsString) Same assertion asAssert.isIn(Iterable)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).
Method signature could not beisIn(Collection<String>)
because it would be same signature asisIn(Collection<Date>)
since java collection type are erased at runtime.isNotBetween
(String start, String end) Same assertion asisNotBetween(Date, Date)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isNotBetween
(String start, String end, boolean inclusiveStart, boolean inclusiveEnd) Same assertion asisNotBetween(Date, Date, boolean, boolean)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isNotBetween
(Date start, Date end) Verifies that the actualDate
is not in [start, end[ periodisNotBetween
(Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd) Verifies that the actualDate
is not in the given period defined by start and end dates.
To include start in the period set inclusiveStart parameter totrue
.
To include end in the period set inclusiveEnd parameter totrue
.isNotEqualTo
(String dateAsString) Same assertion asisNotEqualTo(Date date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).Same assertion asAssert.isNotIn(Object...)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).isNotInWithStringDateCollection
(Collection<String> datesAsString) Same assertion asAssert.isNotIn(Iterable)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).
Method signature could not beisNotIn(Collection<String>)
because it would be same signature asisNotIn(Collection<Date>)
since java collection type are erased at runtime.isToday()
Verifies that the actualDate
is today, that is matching current year, month and day (no check on hour, minute, second, milliseconds).isWithinDayOfMonth
(int dayOfMonth) Verifies that the actualDate
day of month is equal to the given day of month.isWithinDayOfWeek
(int dayOfWeek) Verifies that the actualDate
day of week is equal to the given day of week (seeCalendar.DAY_OF_WEEK
for valid values).isWithinHourOfDay
(int hourOfDay) Verifies that the actualDate
hour od day is equal to the given hour of day (24-hour clock).isWithinMillisecond
(int millisecond) Verifies that the actualDate
millisecond is equal to the given millisecond.isWithinMinute
(int minute) Verifies that the actualDate
minute is equal to the given minute.isWithinMonth
(int month) Verifies that the actualDate
month is equal to the given month, month value starting at 1 (January=1, February=2, ...).isWithinSecond
(int second) Verifies that the actualDate
second is equal to the given second.isWithinYear
(int year) Verifies that the actualDate
year is equal to the given year.static void
useDateFormat
(DateFormat userCustomDateFormat) For String based Date assertions likeisBefore(String)
, given String is expected to follow the default Date format, that is ISO 8601 format : "yyyy-MM-dd".static void
Use ISO 8601 date format ("yyyy-MM-dd") for String based Date assertions.usingComparator
(Comparator<? super Date> customComparator) Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Revert to standard comparison for incoming assertion checks.withDateFormat
(DateFormat userCustomDateFormat) For String based Date assertions likeisBefore(String)
, given String is expected to follow the default Date format, that is ISO 8601 format : "yyyy-MM-dd".Use ISO 8601 date format ("yyyy-MM-dd") for String based Date assertions.Methods inherited from class org.fest.assertions.api.AbstractAssert
as, as, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, getWritableAssertionInfo, has, hashCode, hasSameClassAs, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage
-
Constructor Details
-
DateAssert
Creates a newDateAssert
.- Parameters:
actual
- the target to verify.
-
-
Method Details
-
isEqualTo
Same assertion asisEqualTo(Date date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual and given Date represented as String are not equal.AssertionError
- if the given date as String could not be converted to a Date.
-
isNotEqualTo
Same assertion asisNotEqualTo(Date date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual and given Date represented as String are equal.AssertionError
- if the given date as String could not be converted to a Date.
-
isIn
Same assertion asAssert.isIn(Object...)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
datesAsString
- the given Dates represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual is not in given Dates represented as String.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isInWithStringDateCollection
Same assertion asAssert.isIn(Iterable)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).
Method signature could not beisIn(Collection<String>)
because it would be same signature asisIn(Collection<Date>)
since java collection type are erased at runtime.- Parameters:
datesAsString
- the given Dates represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual is not in given Dates represented as String.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isNotIn
Same assertion asAssert.isNotIn(Object...)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
datesAsString
- the given Dates represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual is in given Dates represented as String.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isNotInWithStringDateCollection
Same assertion asAssert.isNotIn(Iterable)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).
Method signature could not beisNotIn(Collection<String>)
because it would be same signature asisNotIn(Collection<Date>)
since java collection type are erased at runtime.- Parameters:
datesAsString
- the given Dates represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if actual is in given Dates represented as String.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isBefore
Verifies that the actualDate
is strictly before the given one.- Parameters:
other
- the given Date.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if otherDate
isnull
.AssertionError
- if the actualDate
is not strictly before the given one.
-
isBefore
Same assertion asisBefore(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if given date as String isnull
.AssertionError
- if the actualDate
is not strictly before the given Date represented as String.AssertionError
- if the given date as String could not be converted to a Date.
-
isBeforeOrEqualsTo
Verifies that the actualDate
is before or equals to the given one.- Parameters:
other
- the given Date.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if otherDate
isnull
.AssertionError
- if the actualDate
is not before or equals to the given one.
-
isBeforeOrEqualsTo
Same assertion asisBeforeOrEqualsTo(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if given date as String isnull
.AssertionError
- if the actualDate
is not before or equals to the given Date represented as String.AssertionError
- if the given date as String could not be converted to a Date.
-
isAfter
Verifies that the actualDate
is strictly after the given one.- Parameters:
other
- the given Date.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if otherDate
isnull
.AssertionError
- if the actualDate
is not strictly after the given one.
-
isAfter
Same assertion asisAfter(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if given date as String isnull
.AssertionError
- if the actualDate
is not strictly after the given Date represented as String.AssertionError
- if the given date as String could not be converted to a Date.
-
isAfterOrEqualsTo
Verifies that the actualDate
is after or equals to the given one.- Parameters:
other
- the given Date.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if otherDate
isnull
.AssertionError
- if the actualDate
is not after or equals to the given one.
-
isAfterOrEqualsTo
Same assertion asisAfterOrEqualsTo(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if given date as String isnull
.AssertionError
- if the actualDate
is not after or equals to the given Date represented as String.AssertionError
- if the given date as String could not be converted to a Date.
-
isBetween
Verifies that the actualDate
is in [start, end[ period (start included, end excluded).- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if startDate
isnull
.NullPointerException
- if endDate
isnull
.AssertionError
- if the actualDate
is not in [start, end[ period.
-
isBetween
Same assertion asisBetween(Date, Date)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if start Date as String isnull
.NullPointerException
- if end Date as String isnull
.AssertionError
- if the actualDate
is not in [start, end[ period.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isBetween
Verifies that the actualDate
is in the given period defined by start and end dates.
To include start in the period set inclusiveStart parameter totrue
.
To include end in the period set inclusiveEnd parameter totrue
.- Parameters:
start
- the period start, expected not to be null.end
- the period end, expected not to be null.inclusiveStart
- wether to include start date in period.inclusiveEnd
- wether to include end date in period.- Returns:
- this assertion object.
- Throws:
AssertionError
- ifactual
isnull
.NullPointerException
- if startDate
isnull
.NullPointerException
- if endDate
isnull
.AssertionError
- if the actualDate
is not in (start, end) period.
-
isBetween
Same assertion asisBetween(Date, Date, boolean, boolean)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
start
- the period start, expected not to be null.end
- the period end, expected not to be null.inclusiveStart
- wether to include start date in period.inclusiveEnd
- wether to include end date in period.- Returns:
- this assertion object.
- Throws:
AssertionError
- ifactual
isnull
.NullPointerException
- if start Date as String isnull
.NullPointerException
- if end Date as String isnull
.AssertionError
- if the actualDate
is not in (start, end) period.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isNotBetween
Verifies that the actualDate
is not in the given period defined by start and end dates.
To include start in the period set inclusiveStart parameter totrue
.
To include end in the period set inclusiveEnd parameter totrue
.- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.inclusiveStart
- wether to include start date in period.inclusiveEnd
- wether to include end date in period.- Returns:
- this assertion object.
- Throws:
AssertionError
- ifactual
isnull
.NullPointerException
- if startDate
isnull
.NullPointerException
- if endDate
isnull
.AssertionError
- if the actualDate
is not in (start, end) period.
-
isNotBetween
public DateAssert isNotBetween(String start, String end, boolean inclusiveStart, boolean inclusiveEnd) Same assertion asisNotBetween(Date, Date, boolean, boolean)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.inclusiveStart
- wether to include start date in period.inclusiveEnd
- wether to include end date in period.- Returns:
- this assertion object.
- Throws:
AssertionError
- ifactual
isnull
.NullPointerException
- if start Date as String isnull
.NullPointerException
- if end Date as String isnull
.AssertionError
- if the actualDate
is not in (start, end) period.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isNotBetween
Verifies that the actualDate
is not in [start, end[ period- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if startDate
isnull
.NullPointerException
- if endDate
isnull
.AssertionError
- if the actualDate
is in [start, end[ period.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isNotBetween
Same assertion asisNotBetween(Date, Date)
but given Dates are represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
start
- the period start (inclusive), expected not to be null.end
- the period end (exclusive), expected not to be null.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.NullPointerException
- if start Date as String isnull
.NullPointerException
- if end Date as String isnull
.AssertionError
- if the actualDate
is in [start, end[ period.AssertionError
- if one of the given date as String could not be converted to a Date.
-
isInThePast
Verifies that the actualDate
is strictly in the past.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
is not in the past.
-
isToday
Verifies that the actualDate
is today, that is matching current year, month and day (no check on hour, minute, second, milliseconds).- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
is not today.
-
isInTheFuture
Verifies that the actualDate
is strictly in the future.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
is not in the future.
-
isBeforeYear
Verifies that the actualDate
is strictly before the given year.- Parameters:
year
- the year to compare actual year to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
year is after or equals to the given year.
-
isAfterYear
Verifies that the actualDate
is strictly after the given year.- Parameters:
year
- the year to compare actual year to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
year is before or equals to the given year.
-
isWithinYear
Verifies that the actualDate
year is equal to the given year.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
year
- the year to compare actual year to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
year is not equal to the given year.
-
isWithinMonth
Verifies that the actualDate
month is equal to the given month, month value starting at 1 (January=1, February=2, ...).Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
month
- the month to compare actual month to, month value starting at 1 (January=1, February=2, ...).- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
month is not equal to the given month.
-
isWithinDayOfMonth
Verifies that the actualDate
day of month is equal to the given day of month.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
dayOfMonth
- the day of month to compare actual day of month to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
month is not equal to the given day of month.
-
isWithinDayOfWeek
Verifies that the actualDate
day of week is equal to the given day of week (seeCalendar.DAY_OF_WEEK
for valid values).Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
dayOfWeek
- the day of week to compare actual day of week to, seeCalendar.DAY_OF_WEEK
for valid values- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
week is not equal to the given day of week.
-
isWithinHourOfDay
Verifies that the actualDate
hour od day is equal to the given hour of day (24-hour clock).Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
hourOfDay
- the hour of day to compare actual hour of day to (24-hour clock)- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
hour is not equal to the given hour.
-
isWithinMinute
Verifies that the actualDate
minute is equal to the given minute.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
minute
- the minute to compare actual minute to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
minute is not equal to the given minute.
-
isWithinSecond
Verifies that the actualDate
second is equal to the given second.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
second
- the second to compare actual second to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
second is not equal to the given second.
-
isWithinMillisecond
Verifies that the actualDate
millisecond is equal to the given millisecond.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
millisecond
- the millisecond to compare actual millisecond to- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
millisecond is not equal to the given millisecond.
-
isInSameYearAs
Verifies that actual and givenDate
are in the same year.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same year.
-
isInSameYearAs
Same assertion asisInSameYearAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and given Date represented as String are not in the same year.AssertionError
- if the given date as String could not be converted to a Date.
-
isInSameMonthAs
Verifies that actual and givenDate
are chronologically in the same month (and thus in the same year).If you want to compare month only (without year), use :
assertThat(myDate).isWithinMonth(monthOf(otherDate))
SeeDates.monthOf(Date)
to get the month of a given Date.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same month.
-
isInSameMonthAs
Same assertion asisInSameMonthAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same month.
-
isInSameDayAs
Verifies that actual and givenDate
are chronologically in the same day of month (and thus in the same month and year).If you want to compare day of month only (without month and year), you could write :
assertThat(myDate).isWithinDayOfMonth(dayOfMonthOf(otherDate))
seeDates.dayOfMonthOf(Date)
to get the day of month of a given Date.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same day of month.
-
isInSameDayAs
Same assertion asisInSameDayAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same day of month.
-
isInSameHourAs
Verifies that actual and givenDate
are chronologically in the same hour (and thus in the same day, month and year).If you want to compare hour only (without day, month and year), you could write :
assertThat(myDate).isWithinHour(hourOfDayOf(otherDate))
seeDates.hourOfDay(Date)
to get the hour of a given Date.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same hour.
-
isInSameHourAs
Same assertion asisInSameHourAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same hour.
-
isInSameMinuteAs
Verifies that actual and givenDate
are chronologically in the same minute (and thus in the same hour, day, month and year).If you want to compare minute only (without hour, day, month and year), you could write :
assertThat(myDate).isWithinMinute(minuteOf(otherDate))
seeDates.minuteOf(Date)
to get the minute of a given Date.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same minute.
-
isInSameMinuteAs
Same assertion asisInSameMinuteAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same minute.
-
isInSameSecondAs
Verifies that actual and givenDate
are chronologically in the same second (and thus in the same minute, hour, day, month and year).If you want to compare second only (without minute, hour, day, month and year), you could write :
assertThat(myDate).isWithinSecond(secondOf(otherDate))
seeDates.secondOf(Date)
to get the second of a given Date.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the givenDate
to compare actualDate
to.- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same second.
-
isInSameSecondAs
Same assertion asisInSameSecondAs(Date)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if actual and givenDate
are not in the same second.
-
isCloseTo
Verifies that the actualDate
is close to the other date by less than delta (expressed in milliseconds), if difference is equals to delta it's ok.One can use handy
TimeUnit
to convert a duration in milliseconds, for example you can express a delta of 5 seconds withTimeUnit.SECONDS.toMillis(5)
.Note that using a custom comparator has no effect on this assertion (see
usingComparator(Comparator)
.- Parameters:
other
- the date to compare actual todeltaInMilliseconds
- the delta used for date comparison, expressed in milliseconds- Returns:
- this assertion object.
- Throws:
NullPointerException
- ifDate
parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
week is not close to the given date by less than delta.
-
isCloseTo
Same assertion asisCloseTo(Date, long)
but given Date is represented as String either with ISO date format (yyyy-MM-dd) or user custom date format (set with methodwithDateFormat(DateFormat)
).- Parameters:
dateAsString
- the given Date represented as String in default or custom date format.deltaInMilliseconds
- the delta used for date comparison, expressed in milliseconds- Returns:
- this assertion object.
- Throws:
NullPointerException
- if dateAsString parameter isnull
.AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
week is not close to the given date by less than delta.
-
hasTime
Verifies that the actualDate
has the same time as the given timestamp.Both time or timestamp express a number of milliseconds since January 1, 1970, 00:00:00 GMT.
- Parameters:
timestamp
- the timestamp to compare actual time to.- Returns:
- this assertion object.
- Throws:
AssertionError
- if the actualDate
isnull
.AssertionError
- if the actualDate
time is not equal to the given timestamp.- See Also:
-
withDateFormat
For String based Date assertions likeisBefore(String)
, given String is expected to follow the default Date format, that is ISO 8601 format : "yyyy-MM-dd".With this method, user can specify its own date format, replacing the current date format for all future Date assertions in the test suite (i.e. not only the current assertions) since custom DateFormat is stored in a static field.
To revert to default format simply call
withIsoDateFormat()
.- Parameters:
userCustomDateFormat
- the new Date format used for String based Date assertions.- Returns:
- this assertion object.
-
useDateFormat
For String based Date assertions likeisBefore(String)
, given String is expected to follow the default Date format, that is ISO 8601 format : "yyyy-MM-dd".With this method, user can specify its own date format, replacing the current date format for all future Date assertions in the test suite (i.e. not only the current assertions) since custom DateFormat is stored in a static field.
To revert to default format simply call
useIsoDateFormat()
(static method) orwithIsoDateFormat()
.- Parameters:
userCustomDateFormat
- the new Date format used for String based Date assertions.
-
withIsoDateFormat
Use ISO 8601 date format ("yyyy-MM-dd") for String based Date assertions.- Returns:
- this assertion object.
-
useIsoDateFormat
public static void useIsoDateFormat()Use ISO 8601 date format ("yyyy-MM-dd") for String based Date assertions. -
usingComparator
Description copied from class:AbstractAssert
Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Custom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);
- Specified by:
usingComparator
in interfaceAssert<DateAssert,
Date> - Overrides:
usingComparator
in classAbstractAssert<DateAssert,
Date> - Parameters:
customComparator
- the comparator to use for incoming assertion checks.- Returns:
this
assertion object.
-
usingDefaultComparator
Description copied from class:AbstractAssert
Revert to standard comparison for incoming assertion checks.This method should be used to disable a custom comparison strategy set by calling
Assert.usingComparator(Comparator)
.- Specified by:
usingDefaultComparator
in interfaceAssert<DateAssert,
Date> - Overrides:
usingDefaultComparator
in classAbstractAssert<DateAssert,
Date> - Returns:
this
assertion object.
-