Added some FIXMEs.

This commit is contained in:
Diederik Muylwyk 2019-12-30 18:43:15 -05:00
parent eb294f92c1
commit 170b607992
2 changed files with 3 additions and 0 deletions

View File

@ -388,6 +388,7 @@ public class DateRangeParam implements IQueryParameterAnd<DateParam> {
return Objects.hash(myLowerBound, myUpperBound);
}
// FIXME: DM 2019-12-30 - We're matching exactly but need to account for intervals (see issue #1652).
public boolean isDateWithinRange(Date theDate) {
boolean retVal = false;

View File

@ -48,6 +48,8 @@ public class DateRangeParamTest {
myAfter = new Date();
}
// FIXME: DM 2019-12-30 - We're matching exactly but need to account for intervals (see issue #1652).
@Test
public void testIsDateWithinRangeExclusive() {
DateParam lowerBound = new DateParam(GREATERTHAN, myLower);