码迷,mamicode.com
首页 > 其他好文 > 详细

loadrunner事务判断常用方法

时间:2018-11-30 13:57:10      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:tco   get   返回   方法   expect   turn   class   prope   事务   

 

 

 

//判断关联到的字符串是否为空
if (strlen(lr_eval_string("{param}")) == 0);

//判断关联的字符串是否跟期望的值相同
if(strcmp(lr_eval_string("{param}"), "expected") == 0);

//判断关联的字符数组count是否为0,这种情况适合 ORD=ALL 
的关联方式
if(atoi(lr_eval_string("{param_count}")) == 0);

//根据返回的响应码是不是200
int HttpRetCode; 
HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE); 
if (HttpRetCode == 200) 

  

loadrunner事务判断常用方法

标签:tco   get   返回   方法   expect   turn   class   prope   事务   

原文地址:https://www.cnblogs.com/Alexr/p/10043247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!