如何查询 TFS 以获取特定工作项的最新信息?
考虑以下层次结构:
1 个测试用例工作项具有多个测试结果工作项。我可以在 TFS 中进行“工作项和直接链接”查询,以显示此层次结构:
测试用例“客户需要blabla”
- 测试结果 - 1/11//11*
- 测试结果 - 2011 年 2 月 1 日成功*
- 测试结果 - 2011 年 3 月 1 日成功*
是否可以将查询结果限制为最新的测试结果?所以我想要这个:
测试用例“客户需要blabla”
- 测试结果 - 2011 年 3 月 1 日成功*
请注意,我无法筛选“州”字段,因为这些字段未维护...
*欧洲日期表示法 d/mm/yy
Consider the following hierarchy:
1 Test Case work item has multiple Test Result work items. I can make a "Work Items and Direct Links" query in TFS, to show me this hierarchy:
Test Case "Customer needs to blabla"
- Test Result - Fail on 1/11//11*
- Test Result - Success on 2/1/11*
- Test Result - Success on 3/1/11*
Is it possible to limit the query result to the latest Test Result? So I would like to have this:
Test Case "Customer needs to blabla"
- Test Result - Success on 3/1/11*
Note that I cannot filter on the State field, because those fields are not maintained...
*Euro date notation d/mm/yy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 WIQL 无法做到这一点。恐怕您必须以编程方式在初始查询后进行过滤。
This is not possible using WIQL. You would have to do it programmatically to filter after the initial query I'm afraid.