use of org.apache.jmeter.control.gui.TestPlanGui in project jmeter by apache.
the class JMeterTreeModel method clearTestPlan.
/**
* Clear the test plan, and use default node for test plan and workbench.
*
* N.B. Should only be called by {@link GuiPackage#clearTestPlan()}
*/
public void clearTestPlan() {
TestElement tp = new TestPlanGui().createTestElement();
clearTestPlan(tp);
}
Aggregations