Search in sources :

Example 1 with JSettingsPanel

use of kg.apc.jmeter.vizualizers.JSettingsPanel in project jmeter-plugins by undera.

the class AbstractGraphPanelVisualizerTest method testCreateSettingsPanel.

/**
 * Test of createSettingsPanel method, of class
 * AbstractGraphPanelVisualizer.
 */
@Test
public void testCreateSettingsPanel() {
    System.out.println("createSettingsPanel");
    AbstractGraphPanelVisualizer instance = new AbstractGraphPanelVisualizerImpl();
    JSettingsPanel result = instance.createSettingsPanel();
    assertNotNull(result);
}
Also used : JSettingsPanel(kg.apc.jmeter.vizualizers.JSettingsPanel)

Example 2 with JSettingsPanel

use of kg.apc.jmeter.vizualizers.JSettingsPanel in project jmeter-plugins by undera.

the class AbstractGraphPanelVisualizerTest method testGetSettingsPanel.

@Test
public void testGetSettingsPanel() {
    System.out.println("getSettingsPanel");
    AbstractGraphPanelVisualizer instance = new AbstractGraphPanelVisualizerImpl();
    JSettingsPanel result = instance.createSettingsPanel();
    assertNotNull(result);
}
Also used : JSettingsPanel(kg.apc.jmeter.vizualizers.JSettingsPanel)

Example 3 with JSettingsPanel

use of kg.apc.jmeter.vizualizers.JSettingsPanel in project jmeter-plugins by undera.

the class GraphPanelTest method setUp.

/**
 */
@Before
public void setUp() {
    instance = new GraphPanel();
    instance.getSettingsTab().add(new JSettingsPanel(new AbstractGraphPanelVisualizerImpl(), JSettingsPanel.GRADIENT_OPTION));
    instance.getGraphObject().setRows(new ConcurrentSkipListMap<String, AbstractGraphRow>());
}
Also used : AbstractGraphRow(kg.apc.charting.AbstractGraphRow) JSettingsPanel(kg.apc.jmeter.vizualizers.JSettingsPanel) Before(org.junit.Before)

Example 4 with JSettingsPanel

use of kg.apc.jmeter.vizualizers.JSettingsPanel in project jmeter-plugins by undera.

the class AbstractMonitoringVisualizerTest method testCreateSettingsPanel.

@Test
public void testCreateSettingsPanel() {
    System.out.println("createSettingsPanel");
    AbstractMonitoringVisualizer instance = new AbstractMonitoringVisualizerImpl();
    JSettingsPanel result = instance.createSettingsPanel();
    assertNotNull(result);
}
Also used : JSettingsPanel(kg.apc.jmeter.vizualizers.JSettingsPanel) Test(org.junit.Test)

Aggregations

JSettingsPanel (kg.apc.jmeter.vizualizers.JSettingsPanel)4 AbstractGraphRow (kg.apc.charting.AbstractGraphRow)1 Before (org.junit.Before)1 Test (org.junit.Test)1