comparator = new MarkerComparator(strategy);
}
@Test
public void testInclusiveLowerBound() {
Boundary bound = new Boundary(comparator, OCT, true);
Assert.assertFalse(bound.isLessThan(YEAR));
Assert.assertFalse(bound.isLessThan(SEPT));
Assert.assertFalse(bound.isLessThan(SEPT_30));
Assert.assertTrue(bound.isLessThan(OCT_12));
Assert.assertTrue(bound.isLessThan(OCT));
Assert.assertTrue(bound.isLessThan(NOV_1));
Assert.assertTrue(bound.isLessThan(NOV));
}