首页 > 其他 > 详细

LoadRunner改脚本

时间:2015-11-09 20:51:53      阅读:197      评论:0      收藏:0      [点我收藏+]
加action,不支持嵌套大括号
Action()
{
int iCt = 0;

iCt = lr_output_message("abcdefg"); 

iCt = funA(3,5);

lr_output_message("abcdefg %d",iCt);    

}
 
int funA(int a,int b)
{
    int c;
    c = a+b;
    return c;
}

LoadRunner改脚本

原文:http://www.cnblogs.com/yinlg/p/4949331.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!