* A basic check for the testPreviousStandardDate() method when the
* tick unit is 5 seconds (just for the sake of having a multiple).
*/
public void testPreviousStandardDateSecondB() {
MyDateAxis axis = new MyDateAxis("Second");
Second s0 = new Second(58, 31, 12, 1, 4, 2007);
Second s1 = new Second(59, 31, 12, 1, 4, 2007);
// five dates to check...
Date d0 = new Date(s0.getFirstMillisecond());
Date d1 = new Date(s0.getFirstMillisecond() + 50L);
Date d2 = new Date(s0.getMiddleMillisecond());
Date d3 = new Date(s0.getMiddleMillisecond() + 50L);
Date d4 = new Date(s0.getLastMillisecond());
Date end = new Date(s1.getLastMillisecond());
DateTickUnit unit = new DateTickUnit(DateTickUnit.SECOND, 5);
axis.setTickUnit(unit);
// START: check d0 and d1