LoadRunner改脚本

加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;
}
原文地址:https://www.cnblogs.com/yinlg/p/4949331.html