use of kg.apc.charting.GraphPanelChart in project jmeter-plugins by undera.
the class GraphPanelTest method testGetGraphObject.
/**
* Test of getGraphObject method, of class GraphPanel.
*/
@Test
public void testGetGraphObject() {
System.out.println("getGraphObject");
GraphPanelChart result = instance.getGraphObject();
assertEquals(GraphPanelChart.class.getName(), result.getClass().getName());
}
use of kg.apc.charting.GraphPanelChart in project jmeter-plugins by undera.
the class AggregateReportGuiTest method testGetGraphPanelChart.
/**
* Test of getGraphPanelChart method, of class StatVisualizerAccessorGui.
*/
@Test
public void testGetGraphPanelChart() {
System.out.println("getGraphPanelChart");
AggregateReportGui instance = new AggregateReportGui();
GraphPanelChart result = instance.getGraphPanelChart();
assertNotNull(result);
}
use of kg.apc.charting.GraphPanelChart in project jmeter-plugins by undera.
the class SynthesisReportGuiTest method testGetGraphPanelChart.
/**
* Test of getGraphPanelChart method, of class SynthesisReportGui.
*/
@Test
public void testGetGraphPanelChart() {
System.out.println("getGraphPanelChart");
SynthesisReportGui instance = new SynthesisReportGui();
GraphPanelChart result = instance.getGraphPanelChart();
assertNotNull(result);
}
use of kg.apc.charting.GraphPanelChart in project jmeter-plugins by undera.
the class AbstractDynamicThreadGroupGui method getPreviewChart.
public Component getPreviewChart() {
previewChart = new GraphPanelChart(false, true);
chartModel = new ConcurrentHashMap<>();
previewChart.setRows(chartModel);
previewChart.setxAxisLabel("Elapsed Time");
previewChart.setBorder(BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.LOWERED));
return previewChart;
}
use of kg.apc.charting.GraphPanelChart in project jmeter-plugins by undera.
the class SettingsInterfaceTest method testGetGraphPanelChart.
@Test
public void testGetGraphPanelChart() {
System.out.println("getGraphPanelChart");
SettingsInterface instance = new SettingsInterfaceImpl();
GraphPanelChart result = instance.getGraphPanelChart();
assertNotNull(result);
}
Aggregations