Java Code Examples for org.apache.jmeter.testelement.TestElement#setComment()

The following examples show how to use org.apache.jmeter.testelement.TestElement#setComment() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LoadosophiaUploaderGui.java    From jmeter-bzm-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new LoadosophiaUploader();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
    return te;
}
 
Example 2
Source File: BlazeMeterUploaderGui.java    From jmeter-bzm-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new BlazeMeterUploader();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
    return te;
}
 
Example 3
Source File: JMeterXMPPConnectionGui.java    From jmeter-bzm-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement el = new JMeterXMPPConnection();
    modifyTestElement(el);
    el.setComment("This plugin was developed by www.blazemeter.com");
    return el;
}
 
Example 4
Source File: JMeterXMPPSamplerGui.java    From jmeter-bzm-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement el = new JMeterXMPPSampler();
    modifyTestElement(el);
    el.setComment("This plugin is developed by www.blazemeter.com");
    return el;
}
 
Example 5
Source File: AbstractMonitoringVisualizer.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = createMonitoringResultsCollector();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(getWikiPage()));
    return te;
}
 
Example 6
Source File: PageDataExtractorOverTimeGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = super.createTestElement();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(getWikiPage()));
    return te;
}
 
Example 7
Source File: FlexibleFileWriterGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new FlexibleFileWriter();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
    return te;
}
 
Example 8
Source File: PerfMonGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new PerfMonCollector();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(getWikiPage()));
    return te;
}
 
Example 9
Source File: JMXMonGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new JMXMonCollector();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(getWikiPage()));
    return te;
}
 
Example 10
Source File: AutoStopGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new AutoStop();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
    return te;
}
 
Example 11
Source File: DbMonGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new DbMonCollector();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(getWikiPage()));
    return te;
}
 
Example 12
Source File: ConsoleStatusLoggerGui.java    From jmeter-plugins with Apache License 2.0 5 votes vote down vote up
@Override
public TestElement createTestElement() {
    TestElement te = new ConsoleStatusLogger();
    modifyTestElement(te);
    te.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
    return te;
}