Visual Assert – The Unit Testing Add-In for Visual C++
cfix – C/C++ Unit Testing for Win32 and NT
 
 

TestFixture::TearDown

TestFixture::TearDown
Synopsis

This (static) method may be redefined in a test class to implement cleanup of global resources. The method will be called only once per fixture.

Declaration
static void TearDown();
					
Remarks
[Note]Note
For certain initialization work, it may be more advantageous to use an after method.