if TestEntironment == nil then --如果没有定义TestEntironment
Win32 = 1
Symbian = 2
TestEntironment = Win32
--TestEntironment = Symbian
End
if TestEntironment == Win32 then
reportfile = "..\\TestCode\\TestReport.txt" --测试报告文件
else
reportfile = "c:\\TestCode\\TestReport.txt" --测试报告文件
end
2. 初始化测试框架
--初始化测试框架
function InitTestFrame()
--定义存储各模块测试执行情况的表
tRunStatistic = {}
tRunStatisticIndex = 0 --tRunStatistic的索引
CurrNGModuleIndex = 0
CurrNGCaseIndex = 0
--定义存储执行失败用例的表
tRunNG = {}
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/