TestNG 报告:堆栈跟踪显示发生故障的方法,但不显示行号
我正在运行 TestNG,最终报告显示失败,然后显示失败的堆栈跟踪。然而,在覆盖我的测试方法的堆栈跟踪点,它显示“(未知来源)”而不是行号。
行号会让事情变得容易得多!
是否有我错过的配置选项?我如何让它也打印出行号?
I'm running TestNG, and the end report shows a failure, and then a stacktrace of the failure. However, at the point of the stack trace that covers my test method, it says "(Unknown Source)" instead of a line number.
A line number would make things a lot easier!
Is there a config option I missed? How do I get it to print out the line number too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况的原因可能是这部分代码已通过 JIT 优化,或者您没有使用
-g
(或 ant 中的debug
)对其进行编译。This is happening either because this section of the code was optimized by the JIT or you didn't compile it with
-g
(ordebug
in ant).