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

时间:2014-02-12 15:58:45

标签: tfs-sdk microsoft-test-manager tfs2013 test-suite

我正在与一个学校项目合作,我将分析公司缺陷数据库。 他们正在使用Microsoft Foundation Server(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);
    }
}

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

1 个答案:

答案 0 :(得分:8)

查看以下代码段 它向您展示了如何使用测试点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 for Test