コード例 #1
0
ファイル: ChartManagerTest.java プロジェクト: JobTest/Board
 @Test
 public void testArithmeticType() throws Exception {
   ChartManager.setLogarithmic(chart, false);
   assertNull(yAxis.getType());
 }
コード例 #2
0
ファイル: ChartManagerTest.java プロジェクト: JobTest/Board
 @Test
 public void testLogarithmicType() throws Exception {
   ChartManager.setLogarithmic(chart, true);
   assertEquals(AxisType.LOGARITHMIC, yAxis.getType());
 }