使用 TFS API 显示测试结果表单测试套件



我正在与一个学校项目合作,我将分析公司的缺陷数据库。他们使用的是Microsoft基础服务器 (TFS)。我是 TFS 和 TFS API 的新手。

我在使用 TFS 客户端对象模型从 TFS 获取正确的数据时遇到一些问题.我可以检索所有测试计划、它们各自的测试套件以及特定测试套件使用的每个测试用例,但是当我想查看我在哪个测试套件中具有来自测试用例的特定测试结果时,问题就来了。由于多个套件可以使用相同的测试用例,因此我看不到结果来自哪个套件。

我正在这样做,从套件中获取测试用例:

foreach (ITestSuiteEntry testcase in suiteEntrys)
{
    Console.WriteLine("t t Test Case: {0}", testcase.Title+", "+"Test case priority: "+ testcase.TestCase.Priority+"Test case Id: "+testcase.TestCase.Id);
    //Console.Write(", Test Case: {0}", testcase.ToString());
    //get each test result:
    getTestResult(testcase,proj);
}
private void getTestResult(ITestSuiteEntry testcase, ITestManagementTeamProject proj)
{
    var testResults = proj.TestResults.ByTestId(testcase.TestCase.Id);
    foreach (ITestCaseResult result in testResults)
    {
        Console.WriteLine("t t t"+result.DateCreated+","+result.Outcome);
    }
}

所以我的问题是,如何查看用于执行测试的测试套件?

请看下面的代码片段。
它演示如何使用测试点 ID 获取特定测试套件测试结果
您可以使用类似的方法来实现您的目标。

var tfsCollection = new TfsTeamProjectCollection(
        new Uri(tfsUrl),
        new System.Net.NetworkCredential(<user>, <password>));
tfsCollection.EnsureAuthenticated();
var testManagementService = tfsCollection.GetService<ITestManagementService>();
var teamProject = testManagementService.GetTeamProject(projectName);
var testPlan = teamProject.TestPlans.Find(testPlanId);
// Get all Test Cases belonging to a particular Test Suite.
// (If you are using several Test Configurations and want to take only one of them into account,
// you will have to add 'AND ConfigurationId = <your Test Configuration Id>' to the WHERE clause.)
string queryForTestPointsForSpecificTestSuite = string.Format("SELECT * FROM TestPoint WHERE SuiteId = {0}", suiteId );
var testPoints = testPlan.QueryTestPoints(queryForTestPointsForSpecificTestSuite);
// We are going to use these ids when analyzing Test Results
List<int> testPointsIds = (from testPoint in testPoints select testPoint.Id).ToList();
var testResults = teamProject.TestResults.ByTestId(testCaseId);
var testResultsForSpecificTestSuite = testResults.Where(testResult => testPointsIds.Contains(testResult.TestPointId));

此博客文章将在创建查询时为您提供帮助:用于测试的 WIQL

最新更新