CppUnit (or C ++ unit tests in general) in Xcode

I wrote some ObjC unit tests for use with OCUnit support in Xcode. Now, I would like to do the same for some C ++ code that I am going to write (a separate static library).

Is there any support, for example. CppUnit (or some other C ++ test) in Xcode? When I write support, I mean that I want to run tests and display the results in the Xcode GUI.

+4
source share
1 answer

Have you looked at the Google C ++ Testing Framework ? It should be quite portable.

+1
source

All Articles