@Test public void testArithmeticType() throws Exception { ChartManager.setLogarithmic(chart, false); assertNull(yAxis.getType()); }
@Test public void testLogarithmicType() throws Exception { ChartManager.setLogarithmic(chart, true); assertEquals(AxisType.LOGARITHMIC, yAxis.getType()); }