Assert.assertTrue(bound.isLessThan(NOV));
}
@Test
public void testExclusiveUpperBound() {
Boundary bound = new Boundary(comparator, OCT, false);
Assert.assertFalse(bound.isGreaterThan(YEAR));
Assert.assertTrue(bound.isGreaterThan(SEPT));
Assert.assertTrue(bound.isGreaterThan(SEPT_30));
Assert.assertFalse(bound.isGreaterThan(OCT_12));
Assert.assertFalse(bound.isGreaterThan(OCT));
Assert.assertFalse(bound.isGreaterThan(NOV_1));
Assert.assertFalse(bound.isGreaterThan(NOV));
}