如何使 NUnit 断言失败显示 C++ 的行号?

发布于 2024-07-18 11:03:40 字数 394 浏览 4 评论 0原文

当我针对 C++ 代码运行 NUnit 测试并且断言失败时,我没有获得失败发生位置的行号。

示例方法:

[Test]
void testMethod()
{
    Assert::Fail("test comment");
}

示例输出:

[nunit2]失败:

[nunit2] 1)namespace.SomeTest.testMethod:测试注释

[nunit2] 位于命名空间.SomeTest.testMethod()

[nunit2]对于任何断言失败都会生成类似的输出(也没有行号)。

查看输出时,如何获取导致失败的行的行号信息?

When I run NUnit tests against my C++ code and an assertion fails, I don't get line numbers for where the failure occurs.

Sample Method:

[Test]
void testMethod()
{
    Assert::Fail("test comment");
}

Sample output:

[nunit2] Failures:

[nunit2] 1) namespace.SomeTest.testMethod: test comment

[nunit2] at namespace.SomeTest.testMethod()

Similar output (also without line numbers) is generated for any assertion failure.

When looking at my output, how do I get line number information for which line caused the failure?

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

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

发布评论

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

评论(1

梦在深巷 2024-07-25 11:03:41

仔细检查您是否正在使用调试信息 (PDB) 构建类。

当断言失败并且异常捕获 StackTrace 时,Assert 框架基本上会引发异常。 堆栈跟踪从与可执行文件关联的 PDB 文件中获取行号。

Double check that you are building your classes with Debug information (PDB).

The Assert framework basically throws an exception when the assert fails and the exception captures a StackTrace. The stack trace gets it's line numbers from the PDB file associated with the executable.

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