Two sort tests were removed along with the scheduled-task feature in #91. Both also covered an ordering rule that is still live — items with a due date sort before items without one — and no surviving test in ReminderBuilderTests covers it.
The ordering itself is unchanged and correct. This is a coverage gap, not a defect: the rule is now unpinned, so a future change to the comparator would not be caught.
Add a test to ReminderBuilderTests that pins due-dated-before-undated ordering directly, independent of anything the removed feature provided.
Two sort tests were removed along with the scheduled-task feature in #91. Both also covered an ordering rule that is still live — items with a due date sort before items without one — and no surviving test in
ReminderBuilderTestscovers it.The ordering itself is unchanged and correct. This is a coverage gap, not a defect: the rule is now unpinned, so a future change to the comparator would not be caught.
Add a test to
ReminderBuilderTeststhat pins due-dated-before-undated ordering directly, independent of anything the removed feature provided.