测试结果存储在MTM 2010中的哪个位置?

时间:2013-02-06 22:51:47

标签: tfs2010 microsoft-test-manager

我试图将使用MTM 2010记录的测试结果的副本提供给客户端,您知道在哪里获取结果吗?

感谢。

2 个答案:

答案 0 :(得分:1)

测试运行及其附件存储在TFS服务器上,可通过TFS SDK获得。请参阅TestManagementService apis,其中ITestRun.Attachments将包含所有与测试运行相关的附件

var testsvc = tfs.GetService<TestManagementService>()
IEnumerable<ITestRun> testRun = testsvc.GetTeamProject("myteamprojectname").TestRuns; // you can use the query/find 

答案 1 :(得分:1)

我按照下面提到的两种方法来分析我的测试运行:

  1. 从“运行”运行以下命令: start mtm:// [tfsserver:portnumber / tfs / collectionname] / p:[teamproject] / testing / testrun / open?id =

  2. 将结果文件(.trx)下载到我的本地系统: tcm run / export / id:id / resultsfile:[my_local_path] / collection:CollectionURL / teamproject:project [/ login:username,[password]] [/ attachment:attachmentname]