Package kg.apc.jmeter.graphs

Examples of kg.apc.jmeter.graphs.SettingsInterface


   @Test
   public void testGetGranulation()
   {
      System.out.println("getGranulation");
      SettingsInterface instance = new SettingsInterfaceImpl();
      int expResult = 0;
      int result = instance.getGranulation();
      assertEquals(expResult, result);
   }
View Full Code Here


   @Test
   public void testSetGranulation()
   {
      System.out.println("setGranulation");
      int granulation = 0;
      SettingsInterface instance = new SettingsInterfaceImpl();
      instance.setGranulation(granulation);
   }
View Full Code Here

   @Test
   public void testGetGraphPanelChart()
   {
      System.out.println("getGraphPanelChart");
      SettingsInterface instance = new SettingsInterfaceImpl();
      GraphPanelChart result = instance.getGraphPanelChart();
      assertNotNull(result);
   }
View Full Code Here

    @Test
    public void testSwitchModel()
    {
        System.out.println("switchModel");
        boolean aggregate = false;
        SettingsInterface instance = new SettingsInterfaceImpl();
        instance.switchModel(aggregate);
    }
View Full Code Here

     * Test of getWikiPage method, of class SettingsInterface.
     */
    @Test
    public void testGetWikiPage() {
        System.out.println("getWikiPage");
        SettingsInterface instance = new SettingsInterfaceImpl();
        String expResult = "";
        String result = instance.getWikiPage();
        assertEquals(expResult, result);
    }
View Full Code Here

TOP

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

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.