当单元测试失败时通知个人

发布于 2024-11-19 09:48:22 字数 160 浏览 2 评论 0原文

我们正在尝试找出一种重新组织单元测试的方法,并希望找到一种有用的方法来将程序员负责的单元测试的责任分配给他们。

当我们的构建因单元测试之一失败而中断时,这将很有用。我们希望自动通知(链接到办公桌的程序员/测试人员/实习生)他们负责破坏构建。

有人对实现此类功能有一些建议吗?

We are trying to figure out a way to reorganize our unit tests and want to work out a useful way to assign responsibility to the programmer for the unit tests they're in charge of.

This would be useful when our build breaks because one of our unit tests fails. We would like to automatically notify the (programmer/tester/intern chained to the desk) that they are responsible for breaking the build.

Does anybody have some advice on implementing such functionality?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴梦长久 2024-11-26 09:48:22

Microsoft 的 Visual Studio 单元测试框架具有“所有者”属性。我们这样使用它:

[TestMethod]
[Owner("[email protected]")]
public void unit_test_name()
{
    //test body here
}

Microsoft's Visual Studio Unit Testing framework has an "Owner" attribute. We use it like this:

[TestMethod]
[Owner("[email protected]")]
public void unit_test_name()
{
    //test body here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文