public void testThisPast() {
RepeaterFortnight fortnights = new RepeaterFortnight();
fortnights.setStart(_now);
Span thisFortnight = fortnights.thisSpan(Pointer.PointerType.PAST);
assertEquals(Time.construct(2006, 8, 13, 0), thisFortnight.getBeginCalendar());
assertEquals(Time.construct(2006, 8, 16, 14), thisFortnight.getEndCalendar());
}
public void testOffset() {