1

我在几个 msdn 论坛上读过它,Team Foundation Server 中的测试管理服务会针对其用户的某些特定操作发出通知。你可以订阅

到这些通知以了解服务器中发生了什么。以下是测试管理服务提出的一些重要通知。

TestRunStartedNotification TestRunChangedNotification TestRunCompletedNotification TestPlanChangedNotification TestSuiteChangedNotification TestConfigurationChangedNotification

任何人都可以分享它的步骤,比如在应该将 TestRunCompletedNotification 邮件发送给用户之后如何为此设置警报。它可以通过MTM完成。我知道 TFS 警报,但我想针对特定套件或计划在测试运行结束后发送电子邮件。

或者如何在特定套件的测试用例运行完成时设置电子邮件。

mtm 或 tfs 中是否有任何用于电子邮件警报的内置功能?

请帮忙

4

1 回答 1

0

没有像 TFS 警报那样从 MTM 设置警报/通知电子邮件的默认方法。您需要使用 TFS API 创建一个监听器来监听测试事件并自己实现发送电子邮件。

检查您可以处理的事件:

http://nkdagility.com/tfs-event-handler-for-team-foundation-server-2010/

你需要一个事件处理程序来使用它们:

http://nkdagility.com/tfs-event-handler-in-net-3-5-part-2-handling-team-foundation-server-events/

http://www.almguide.com/2011/12/tfs-server-side-event-handlers/

于 2016-04-26T06:56:52.090 回答