标题: reporter.ReportEvent [打印本页] 作者: xp20683 时间: 2006-12-8 11:54 标题: reporter.ReportEvent reporter.ReportEvent micfail,"status输入错误","Failured!!!"
能不能将多个报告写在一起,,最后成一张报表
j=Environment.Value("first")
For i=1 to 10
If Environment.Value("result"&j)=1 then
reporter.ReportEvent micpass,"测试"+cstr(j)+"通过","succeed!!!"
else
reporter.ReportEvent micfail,"测试"+cstr(j)+"未通过","Failured!!!"
end if
j=j+1
Next