1

我在测试管理器中有自动化测试用例。该测试用例在不同的构建中执行了多次(它位于多个测试运行中)。我可以通过测试管理器 UI(测试管理器 -> 分析测试运行 -> 打开测试运行 -> 查看测试用例的结果 -> 结果历史表)查看测试执行的历史记录。

如何使用 TFS API 获取相同的数据?

4

1 回答 1

5

我会这样做:

using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.TestManagement.Client;

var tfsCollection = new TfsTeamProjectCollection(
                new Uri(@"http://<yourTFS>:8080/tfs/<your collection>"),
                new System.Net.NetworkCredential(<user who can access to TFS>,<password>));
tfsCollection.EnsureAuthenticated();

ITestManagementService testManagementService = tfsCollection.GetService<ITestManagementService>();

var testRuns = testManagementService.QueryTestRuns("SELECT * FROM TestRun WHERE TestRun.TestPlanId=<your test plan ID>");

IEnumerable<ITestCaseResult> testResultHistoryYouWant = from testRun in testRuns
                                from testResult in testRun.QueryResults()
                                where testResult.TestCaseId == <your test case ID>
                                select testResult;
于 2013-05-07T06:51:31.007 回答