我想通过检查执行网格来获取QC中存在的所有测试用例的状态计数(通过/失败)。 检索测试用例的状态和执行日期的方法是什么? 目前我只能获得测试用例名称。
代码:
Set treeMgr = gTDConn.TestSetTreeManager
Set tstTree = treeMgr.NodeByPath(TestSetPath)
Set tstFactory = tstTree.testSetFactory
Set tsetList = tstFactory.NewList("")
For Each tset In tsetList
msgbox tset.Name
next