在运行时创建测试

发布于 2024-08-29 18:42:24 字数 220 浏览 2 评论 0原文

是否有任何 .NET 测试框架允许动态创建测试,而无需处理做作的属性语法?

类似的东西:

foreach (var t in tests)
{
  TestFx.Run(t.Name, t.TestDelegate);
}

但是有了你所期望的测试报告......

我可以用 RowTests 等人做这样的事情,但这似乎很做作。

Are there any .NET testing frameworks which allow dynamic creation of tests without having to deal with a hokey Attribute syntax?

Something like:

foreach (var t in tests)
{
  TestFx.Run(t.Name, t.TestDelegate);
}

But with the test reporting as you would expect...

I could do something like this with RowTests et al, but that seems hokey.

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

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

发布评论

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

评论(2

岁月如刀 2024-09-05 18:42:24

我想知道 Pex 是否能满足您的需求......

I wonder if Pex would suite your needs...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文