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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.