如何使 NUnit 断言失败显示 C++ 的行号?
当我针对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仔细检查您是否正在使用调试信息 (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.