Xcode 中的 CppUnit(或一般的 C++ 单元测试)
我编写了一些 ObjC 单元测试,以便与 Xcode 中的 OCUnit 支持一起使用。现在我想对我即将编写的一些 C++ 代码(一个单独的静态库)执行相同的操作。
Xcode 中是否支持 CppUnit(或其他一些 C++ 测试框架)?当我编写支持时,我的意思是我想要运行测试并在 Xcode GUI 中显示结果。
I've written some ObjC unit tests for use with the OCUnit support in Xcode. Now I would like to do the same for some of the C++ code I'm about to write (a separate static library).
Is there any support for e.g. CppUnit (or some other C++ test framework) in Xcode? When I write support, I mean I want to run the tests and display the results in the Xcode GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否查看过 Google C++ 测试框架?那个应该很便携。
Have you looked at Google C++ Testing Framework? That one should be pretty portable.