CppUnit (or C++ unit tests in general) in Xcode
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.
Have you looked at Google C++ Testing Framework? That one should be pretty portable.
精彩评论