|
方法一:在调用函数脚本时,要把参数写完整。在主脚本中这样写
call"\\xxxx\\xxxx"();
fun1(10,2,jia,jian,cheng,chu);
report_msg(jia);
report_msg(jian);
report_msg(cheng);
report_msg(chu);
方法二:调用编译模块
函数脚本存放在e:\\自动化测试\\练习\\lib”.脚本内容如下
public function fun1(in x,in y,out jia,out jian, out cheng,out chu)
{
jia= x + y;
jian =x-y;
cheng = x *y;
chu = x/y;
}
在test properties中设置如图,test type: complied moudle。
主脚本内容如下:
load("E:\\\\自动化测试\\\\练习\\\\lib");
# call "E:\\\\自动化测试\\\\练习\\\\122801 "();
fun1(10,2,jia,jian,cheng,chu);
report_msg(jia);
report_msg(jian);
report_msg(cheng);
report_msg(chu);
[ 本帖最后由 shiwomyw 于 2006-12-29 14:20 编辑 ] |
|