如何使用 NCrunch 将测试方法从自动执行中排除

发布于 2024-12-13 09:32:50 字数 244 浏览 2 评论 0原文

这个问题可能归因于我的盲目性,但我未能找到一种方法如何排除某些测试方法被NCrunch自动执行。必须有一个属性或类似的手段。我用谷歌搜索并搜索了 NCrunch 网站。

我们正在使用 VS.NET 2010、MS Test、R#(测试不应从运行“解决方案中的所有测试”命令中排除)。

排除某些测试的原因是它们消耗了太多资源或更改了数据。我知道我可以使用模拟框架来避免后者,但这不是这里的重点(也是不可能的)。

This question is probably attributed to my blindness, but I failed to find a way how to exclude certain test methods from being automatically executed by NCrunch. There has to be an attribute or a similar means. I googled and searched the NCrunch website.

We are using VS.NET 2010, MS Test, R# (the tests should not be excluded from a run "All tests in solution" command).

The reason for excluding certain tests is that they eat too many resources or change data. I know I could use mocking frameworks in order to avoid the latter, but that's not the point here (and not possible).

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

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

发布评论

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

评论(1

冷…雨湿花 2024-12-20 09:32:50

据我所知,您可以右键单击 NCrunch 测试窗口中的测试并“忽略”它们。

这会在项目文件夹的 [Projectname].crunchproject.local.xml 中添加行

  <IgnoredTests>
    <NamedTestSelector>
      <TestName>XXXTests.YYYTest.Name_of_the_TestMethod</TestName>
    </NamedTestSelector>
  </IgnoredTests>

afaik you can right click the test(s) in the NCrunch Tests window and 'Ignore' them.

This adds lines in the [Projectname].crunchproject.local.xml in your project folder

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