nunit 控制台没有告诉哪些测试失败了

发布于 2024-10-22 02:24:52 字数 326 浏览 1 评论 0原文

我最近移出 nunit 标签并移至 exec 标签以运行 nunit 控制台来运行单元测试。

这是我的构建脚本中的内容:

exec program="nunit-console.exe" verbose="true" failureonerror="true"> arg 文件=“../abc.dll”/> 执行>

这是我在输出中看到的内容:

task name="exec">250.0064250.0064

正如您所看到的,它确实从持续时间开始运行,我知道我的测试当前失败,但我的构建没有失败。

有什么想法吗?

I recently moved out of nunit tag and moved to exec tag to run nunit console for running unit tests.

Here is what i have in my build script:

exec program="nunit-console.exe" verbose="true" failonerror="true">
arg file="../abc.dll"/>
exec>

Here is what I see in output:

task name="exec">250.0064250.0064

As you can see it did run from the duration and I know that my tests are currently failing but my build didn't fail.

Any ideas?

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

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

发布评论

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

评论(1

梦里泪两行 2024-10-29 02:24:52

说实话:我一无所知。我们通过 NAnt 的 任务执行 NUnit 控制台,我们得到了有意义的输出,而且我们绝对没有做任何花哨的事情:

<exec program="C:\dev\tools\NUnit\2.5.9\bin\net-2.0\nunit-console.exe">
  <arg file="C:\foo\bar.dll" />
</exec>

To be honest: I'm clueless. We're executing NUnit console through NAnt's <exec> task, we're getting meaningful output and we're absolutely not doing anything fancy:

<exec program="C:\dev\tools\NUnit\2.5.9\bin\net-2.0\nunit-console.exe">
  <arg file="C:\foo\bar.dll" />
</exec>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文