ilovezhoujoe 发表于 2006-11-16 10:49:10

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){
请问这个问题怎么解决。

shiwomyw 发表于 2006-11-16 13:45:39

我把你脚本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]
查看完整版本: winrunner的函数调用