Assert.assertFalse(bound.isGreaterThan(NOV_1));
Assert.assertFalse(bound.isGreaterThan(NOV));
}
public void testUnbounded() {
Boundary bound = Boundary.UNBOUNDED;
Assert.assertTrue(bound.isGreaterThan(YEAR));
Assert.assertTrue(bound.isGreaterThan(SEPT));
Assert.assertTrue(bound.isGreaterThan(SEPT_30));
Assert.assertTrue(bound.isGreaterThan(OCT_12));
Assert.assertTrue(bound.isGreaterThan(OCT));
Assert.assertTrue(bound.isGreaterThan(NOV_1));
Assert.assertTrue(bound.isGreaterThan(NOV));
Assert.assertTrue(bound.isLessThan(YEAR));
Assert.assertTrue(bound.isLessThan(SEPT));
Assert.assertTrue(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));
}