Reputation: 32497
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.
Upvotes: 4
Views: 3173
Reputation: 20838
Have you looked at Google C++ Testing Framework? That one should be pretty portable.
Upvotes: 1