winrunner的函数调用
小弟我写了两个脚本脚本2
load ("e:\\test\\1");
count = add(1,2);
pause(count);
脚本1
public function add(int a,int b){
public c = a + b;
return (c);
}
脚本2的Test Propertities也已经设为Compiled Module,在调用的过程出现这个问题
E:\test\1(1):Error in parameter list
public function add(int a,int b){
请问这个问题怎么解决。 我把你脚本1改了一下,就可以运行通。你试试看
# 脚本2
load ("e:\\test\\1");
count = add(1,2);
pause(count);
#脚本1
public c ;
public function add( ina, in b)
{
# public c ;
c = a + b;
return (c);
}
页:
[1]