I use the framework cppunit to test my classes,I want to know if the methods TestFixture::setUp() and TestFixture::tearDown() are called one time for TEST_SUITE or they are called for each method added to this suite
I use the framework cppunit to test my classes,I want to know if the
Share
The methods wrap each individual test case. From the docs: