1,打开eclipse,新建maven工程,在pom中引用jmeter核心jar包,具体请看---https://www.cnblogs.com/guanyf/p/10863033.html---,这里就不再赘述

2,代码如下:

package com.mytest.functions;
import org.apache.jmeter.engine.util.CompoundVariable; import org.apache.jmeter.functions.AbstractFunction; import org.apache.jmeter.functions.InvalidVariableException; import org.apache.jmeter.samplers.SampleResult; import org.apache.jmeter.samplers.Sampler; import org.apache.jmeter.threads.JMeterVariables; import java.util.Collection; import java.util.LinkedList; import java.util.List; /** * Provides a DoubleSum function that adds two or more Double values. * Mostly copied from LongSum */ public class DoubleSum extends AbstractFunction { private static final List<String> desc = new LinkedList<String>(); private static final String KEY = "__doubleSum"; static { desc.add("First double to add"); desc.add("Second long to add - further doubles can be summed by adding further arguments"); desc.add("Name of variable in which to store the result (optional),The author is guanyf"); } private Object[] values; /** * No-arg constructor. */ public DoubleSum() { } /** * {@inheritDoc} */ @Override public synchronized String execute(SampleResult previousResult, Sampler currentSampler) throws InvalidVariableException { JMeterVariables vars = getVariables(); Double sum = 0D; String varName = ((CompoundVariable) values[values.length - 1]).execute().trim(); for (int i = 0; i < values.length - 1; i++) { sum += Double.parseDouble(((CompoundVariable) values[i]).execute()); } try { sum += Double.parseDouble(varName); varName = null; // there is no variable name } catch (NumberFormatException ignored) { } String totalString = Double.toString(sum); if (vars != null && varName != null && varName.length() > 0) {// vars will be null on TestPlan vars.put(varName, totalString); } return totalString; } /** * {@inheritDoc} */ @Override public synchronized void setParameters(Collection<CompoundVariable> parameters) throws InvalidVariableException { checkMinParameterCount(parameters, 2); values = parameters.toArray(); } /** * {@inheritDoc} */ @Override public String getReferenceKey() { return KEY; } /** * {@inheritDoc} */ @Override public List<String> getArgumentDesc() { return desc; } }

最新文章

  1. 搭建测试环境——针对S3C6410开发板
  2. javascript特殊运算符
  3. python 程序构架
  4. valueOf跟toString区别
  5. Windows Azure存储容器私有,公共容器,公共Blob的区别
  6. python中yield用法
  7. 安装oracle 11g详细过程仅供参考
  8. 【翻译】Ext JS最新技巧——2014-5-12
  9. [Tree]Binary Tree Preorder Traversal
  10. Spring整合JMS(一)-基础篇
  11. hibernate框架学习错误集锦-org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.MANUAL)
  12. [翻译 EF Core in Action 1.10] 应该在项目中使用EF Core吗?
  13. 初识Djiango
  14. js 取得当天0点 / 23:59:59 时间
  15. js实用方法记录-指不定哪天就会用到的js方法
  16. Bootstrap3基础 glyphicon 设置图标的颜色与大小
  17. html css input定位 文本框阴影 灰色不可编辑
  18. java接口对接——别人调用我们接口获取数据
  19. python基础-类的封装
  20. Django 模板中使用css, javascript

热门文章

  1. vim插件管理器:Vundle的介绍及安装(很全)(转载)
  2. H Kuangyeye and hamburgers
  3. 最小生成树,Prim算法实现
  4. Checklist: 2019 05.01 ~ 06.30
  5. MySQL--10 日志简介
  6. 判断是否为PC
  7. 线程中的sleep()、join()、yield()方法有什么区别?
  8. 远程桌面连接,运维工程师-必备软件【MultiDesk】
  9. Appium环境搭建(Appium库的安装)
  10. Oracle体系结构理论