UnitTest 中的断点++
我正在 Codelite 编辑器中使用 UnitTest++ 创建一些单元测试。但是,当我调试单元测试应用程序时,断点不会命中。它们甚至不会在调试模式下显示。难道不能调试UnitTest++测试吗?或者我做错了什么?
提前致谢!
I'm creating some unit test with UnitTest++ in Codelite editor. However, when if i'm debuging my unit test application the breakpoints won't hit. They aren't even shown in debugging mode. Isn't it possible to debug UnitTest++ tests? Or what i'm doing wrong?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在 Codelite 中使用 UnitTest++ 调试单元测试,您可以使用“调试”菜单中的“快速调试”。
将可执行文件设置为测试项目输出。它应该已经被 UnitTest++ 插件设置为可执行文件。
正如您已经知道的,您需要有一个将调用 testRunner 的主类:
main.cpp
调试器应该在主类的第一行处中断,并且其他断点应该可以工作。
我希望这有帮助。
In order to debug your unit tests using UnitTest++ in Codelite, you can use "Quick Debug" from the "Debug" menu.
set the executable to be the Test Project output. Which should have been set to an executable by the UnitTest++ plugin already.
As you already know, you need to have a main class that will call the testRunner:
main.cpp
The debugger should break at the first line of your main class and further breakpoints should work.
I hope this helps.