org.apache.jmeter.threads.JMeterContext.setTestLogicalAction()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(72)

本文整理了Java中org.apache.jmeter.threads.JMeterContext.setTestLogicalAction()方法的一些代码示例,展示了JMeterContext.setTestLogicalAction()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JMeterContext.setTestLogicalAction()方法的具体详情如下:
包路径:org.apache.jmeter.threads.JMeterContext
类名称:JMeterContext
方法名:setTestLogicalAction

JMeterContext.setTestLogicalAction介绍

暂无

代码示例

代码示例来源:origin: org.apache.jmeter/ApacheJMeter_components

context.setTestLogicalAction(TestLogicalAction.START_NEXT_ITERATION_OF_THREAD);
} else if (action == START_NEXT_ITERATION_CURRENT_LOOP) {
  log.info("Switching to next loop iteration from element {}", getName());
  context.setTestLogicalAction(TestLogicalAction.START_NEXT_ITERATION_OF_CURRENT_LOOP);
} else if (action == BREAK_CURRENT_LOOP) {
  log.info("Breaking current loop from element {}", getName());
  context.setTestLogicalAction(TestLogicalAction.BREAK_CURRENT_LOOP);

代码示例来源:origin: org.apache.jmeter/ApacheJMeter_core

threadContext.setTestLogicalAction(TestLogicalAction.CONTINUE);
sam = null;
threadContext.getVariables().put(LAST_SAMPLE_OK, TRUE);

代码示例来源:origin: org.apache.jmeter/ApacheJMeter_core

stopTestNow();
  threadContext.setTestLogicalAction(result.getTestLogicalAction());
} else {

相关文章