/** Test of isPointRepresentative method, of class AbstractGraphPanelChartElement. */
 @Test
 public void testIsPointRepresentative() {
   System.out.println("isPointRepresentative");
   int limit = 10;
   AbstractGraphPanelChartElement instance = new AbstractGraphPanelChartElementImpl();
   boolean expResult = true;
   boolean result = instance.isPointRepresentative(limit);
   assertEquals(expResult, result);
 }