Christopher - 2007-11-27

Does anyone know if Cppunit runs test cases simultaneously, or if one has to complete before the other begins?

My debug log contains output from cout in setUp after output from cout in second test case in Testfixture, which makes no sense. The order of output to my debug log seems to be in random order when using CppUnit.

I am concerned that member variables in the TestFixture, that I am setting in setUp, using in individual test cases, then resetting in tearDown, are getting overwritten by the second test case while the first is still using them.

Thanks.