作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Microsoft Test Manager 2010 中有一个用于测试计划的测试用例。
如何在测试计划中找到此测试用例?在组织 View 中是否至少有一列显示使用测试用例的测试计划的路径?
最佳答案
不幸的是,MTM UI 不提供任何搜索测试用例的可能性。
编辑: (见评论)
不幸的是,MTM UI 没有提供任何可能性来搜索属于特定测试计划或测试套件的测试用例。
可能是你的解决方案:
您可以使用 TFS-API 检查特定测试用例属于哪个测试套件。
这是一段适用于 TFS 2013 的代码:
// Current user credentials will be used to access to TFS
TfsTeamProjectCollection tfsCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(<TFS Url>));
tfsCollection.EnsureAuthenticated();
ITestManagementService testManagementService = tfsCollection.GetService<ITestManagementService>();
ITestManagementTeamProject teamProject = testManagementService.GetTeamProject(<team project name>);
// Get all Test Suites your Test Case belongs to
// (Across all Test Plans in the Team Project)
ITestSuiteCollection testSuites = teamProject.TestSuites.ReferencingTestCase(testCaseId);
关于visual-studio-2010 - 如何查找特定测试用例所属的所有测试套件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23521726/
我是一名优秀的程序员,十分优秀!