mbunit 中用于计时测试的 [Duration] 属性在哪里?

发布于 2024-12-03 20:19:46 字数 58 浏览 3 评论 0原文

是不是从最新版本就没有了?

我希望看到一种方法的性能不会恶化。 我忘记了它的技术术语。

Is it gone from the latest version?

I want to see that a method doesn't deteriorate in its performance.
I forgot the technical term for it.

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

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

发布评论

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

评论(1

老子叫无熙 2024-12-10 20:19:46

查看 [Timeout] 属性。它可能会装饰测试方法或测试装置。默认值(未指定时)为 10 分钟。

[TestFixture]
public class Fixture
{
  [Test, Timeout(60)] // timeout at 60 seconds
  public void Method()
  {
  }
}

Have a look at the [Timeout] attribute. It might decorate test methods or test fixtures. The default value (when not specified) is 10 minutes.

[TestFixture]
public class Fixture
{
  [Test, Timeout(60)] // timeout at 60 seconds
  public void Method()
  {
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文