GoogleTest:如何设置断点?
我正在使用 Visual Studio 2010 C++ 和 Google 测试。我的测试项目有一个构建后事件来运行测试项目。这有效,并且 google test 测试结果显示在 Visual Studio 输出窗口中。但是,现在我想设置一个调试断点来逐步完成测试。当我在测试代码或调用的代码中设置断点时,什么也没有发生。
如何使用 google test 设置断点?或者更准确地说,我怎样才能让它触发调试器?
I'm using Visual Studio 2010 C++ with Google test. I have a post-build event on my test project to run the test project. This works and the google test test results are displayed in the visual studio output window. However, now I'd like to set a debug breakpoint to step through a test. When I set a break point in either my test code or in the code it calls nothing happens.
How can I set a breakpoint with google test? Or probably more accurately, how can I get it to trigger the debugger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你有一个单独的项目来构建测试。您应该在调试器下运行它。
I guess you have a separate project that builds the test. You should just run it under the debugger.