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

LoadRunner改脚本

时间:2015-11-09 20:54:04      阅读:146      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!