public void testformatUnitsMetric() throws Exception {
ScaleBar sb = new ScaleBar("scaleBar", null);
sb.initialize(UnitType.METRIC, 1.0d, null);
sb.calculateBestFit(3.779527559055119);
Assert.assertEquals("should be same", "25 m", sb.formatUnits(25));
Assert.assertEquals("should be same", "25.1 km", sb.formatUnits(25100));
}
}