vote up 5 vote down star
3

Been hitting my head on the wall before as I don't make any test classes while using c/c++ (but instead have a lot of print methods).

What is the most used method to perform testing in the c/c++ code? Java's JUnit has only left me with good memories while debugging things.

I know that using asserts in code with a defined debug header should work, but aren't there any better ways?

And since I have the intention to make test classes in the future, any useful tips are welcome.

flag

14 Answers

vote up 5 vote down check

You can check these out:

http://gamesfromwithin.com/?p=29

http://www.opensourcetesting.org/unit_c.php

http://msdn.microsoft.com/en-us/magazine/cc136757.aspx

link|flag
First link to gamesfromwithin has all I needed to know about different frameworks (at least for now). Thank you. – Zka Jul 1 at 14:51
vote up 8 vote down

We use boost.Test. There is also cppunit.

link|flag
vote up 5 vote down

We use Google Test and it's companion Google Mock. Works wonderfully and supports JUnit style XML output for easy integration with CruiseControl, etc. It's also fully cross platform, and from my research a few months ago, GMock was the ONLY fully cross platform object mocking framework for C++.

link|flag
1  
+1. UnitTest++ is good, but Google Test is amazing. – Josh Kelley Jul 1 at 15:11
vote up 3 vote down

UnitTest++ is worth a look. It lacks features compared to some of the other frameworks mentioned here, but the simplicity is nice -- especially if you're just getting started.

I believe it was developed by Noel Llopis after writing the article mentioned in http://gamesfromwithin.com/?p=29. It is pretty easy to port to a multitude of different compilers/platforms -- useful if need to target something other than a PC, be it a game console, embedded device, or otherwise.

The mailinglist has been quiet for a while now, but every so often there are questions, patches, and/or a new release, and people who ask questions are usually answered quickly.

link|flag
1  
Seconded. I've tried a handful of unit test frameworks for C++, and UnitTest++ is easily the best in my opinion. You are correct that it was developed by Noel Llopis. See gamesfromwithin.com/?p=51. – Geerad Jul 1 at 5:20
+1 UnitTest++ is excellent. – markh44 Jul 1 at 7:31
vote up 1 vote down

Another problem people grossly over engineer.

The below is a top of my head rough non working implementation of a nominal unit test infrastructure. It makes some sense to construct Test with a std::string namespace/class name and use a consistent naming scheme to print out which test is failing. I just use a unit test template and have some scripts that find all the executables starting with 'u' (one per class), runs them in turn and collects the return values.


struct Test
{
   std::vector<(std::string)fptr*(void)> tests;
   int run() const
   {
      int stat(0);
      for (/* tests */)
      {
         std::string const res(test.run());
         if (!res.empty())
         {
             std::cerr << res;
             ++stat;
         }
      }
      return stat;
   }
};

std::string test1() { std::ostringstream oss; // do a bunch of stuff // mark some of this code to be pulled into the class documentation

// conditional checks follow if (fail) { oss << "fail: some reason" << std::endl; } // more checks return oss.str(); }

int main(void) { Tests tests; tests.push_back(test1); tests.push_back(test2); return tests.run(); }

link|flag
1  
Well, yes. But a good unit testing framework really does a lot more than that. – Johannes Passing Jul 1 at 8:08
Like couple all of your object files together and force you into pullling in yet another library? – Brian Jul 1 at 13:38
vote up 1 vote down

Shameless plug: If you target Windows and are using Visual Studio, check out cfix and cfix studio.

It is also compatible to WinUnit.

link|flag
vote up 1 vote down

Wikipedia has a long list of unit testing frameworks for C++ and another list for C.

link|flag
vote up 1 vote down

Hi,

I'm working with Qt under Windows and Linux, wich provides an own integrated (but compared to other separate solutions a little bit limited) testing framework.

It's very easy to use and fast to learn - see QTestLib

ciao, Chris

link|flag
+1 , Qt is also great for many other things – MadH Jul 2 at 11:06
vote up 1 vote down

newest version of Visual Studio has something:

http://msdn.microsoft.com/en-us/library/ms243147(VS.80).aspx

link|flag
vote up 1 vote down

Why not use CppUnit? It was created as a port of JUnit.

link|flag
vote up 0 vote down

Some people like Aeryn

link|flag
vote up 0 vote down

For Symbian there is SymbianOSUnit: http://www.symbianosunit.co.uk/

link|flag
vote up 0 vote down

if you are using windows, take a look at: http://stackoverflow.com/questions/243673/limitations-of-using-c-cli-with-nunit and write your tests in http://en.wikipedia.org/wiki/Managed_Extensions_for_C%2B%2B.

also: http://golios.blogspot.com/2008/12/using-nunit-with-c-part-2.html, http://golios.blogspot.com/2008/11/using-nunit-with-native-c.html

this will work just like junit except for the fact that nunit does not create a new instance of the test case class before running each test.

link|flag
vote up 0 vote down

if it's for Windows platform you can try WinUnit from MS from here. Simplified Unit Testing for Native C++ Application

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.