JLabel max = (JLabel) axisGroup.getControl(true , BoundOption.AUTO, true);
TimeSpanTextField span = (TimeSpanTextField) axisGroup.getSpanControl(true);
((JRadioButton) axisGroup.getControl(false, BoundOption.CURRENT, false)).doClick();
span.setTime(new TimeDuration(15000l));
((JRadioButton) axisGroup.getControl(true , BoundOption.AUTO, false)).doClick();
Assert.assertEquals(max.getText().replaceAll("[\\(\\)]", ""), "001/00:00:16 1969");
}