Package kg.apc.jmeter.graphs

Examples of kg.apc.jmeter.graphs.GraphRendererInterface


     */
    @Test
    public void testGetGraphDisplayPanel()
    {
        System.out.println("getGraphDisplayPanel");
        GraphRendererInterface instance = new GraphRendererInterfaceImpl();
        JPanel expResult = null;
        JPanel result = instance.getGraphDisplayPanel();
        assertEquals(expResult, result);
    }
View Full Code Here


     */
    @Test
    public void testIsPreview()
    {
        System.out.println("isPreview");
        GraphRendererInterface instance = new GraphRendererInterfaceImpl();
        boolean expResult = false;
        boolean result = instance.isPreview();
        assertEquals(expResult, result);
    }
View Full Code Here

TOP

Related Classes of kg.apc.jmeter.graphs.GraphRendererInterface

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.