51525354555657585960
values.postConstruct(); } @Test(expected=IllegalArgumentException.class) public void testPostConstructInvalidIntervals() throws Exception { ScalebarAttributeValues values = getValues(); values.intervals = 1; values.postConstruct(); }
6162636465666768
private ScalebarAttributeValues getValues() { ScalebarAttribute attribute = new ScalebarAttribute(); attribute.setWidth(300); attribute.setHeight(120); ScalebarAttributeValues values = attribute.createValue(null); return values; }