Package kg.apc.charting.rows

Examples of kg.apc.charting.rows.GraphRowPercentiles


     * Test of getMinX method, of class GraphRowPercentiles.
     */
    @Test
    public void testGetMinX() {
        System.out.println("getMinX");
        GraphRowPercentiles instance = new GraphRowPercentiles();
        long expResult = 0L;
        long result = instance.getMinX();
        assertEquals(expResult, result);
    }
View Full Code Here


     * Test of getMaxX method, of class GraphRowPercentiles.
     */
    @Test
    public void testGetMaxX() {
        System.out.println("getMaxX");
        GraphRowPercentiles instance = new GraphRowPercentiles();
        long expResult = 1000;
        long result = instance.getMaxX();
        assertEquals(expResult, result);
    }
View Full Code Here

TOP

Related Classes of kg.apc.charting.rows.GraphRowPercentiles

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.