Skip to content

Commit 472ec6c

Browse files
committed
123
1 parent efb663e commit 472ec6c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/test/java/br/ce/wcaquino/taskbackend/DateUtilsTest.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ public void isBefore() {
1717
boolean result = DateUtils.isEqualOrFutureDate(before);
1818
assertFalse(result);
1919
}
20+
/**
21+
*
22+
*/
2023
@Test
2124
public void isAfter() {
2225
LocalDate before = LocalDate.of(2100, 1, 1);
2326
boolean result = DateUtils.isEqualOrFutureDate(before);
24-
assertFalse(result);
27+
assertTrue(result);
28+
}
2529
}

0 commit comments

Comments
 (0)