CppUnit project page | FAQ | CppUnit home page |
00001 #ifndef CPPUNIT_TESTFIXTURE_H // -*- C++ -*- 00002 #define CPPUNIT_TESTFIXTURE_H 00003 00004 00005 namespace CppUnit { 00006 00007 00014 class TestFixture 00015 { 00016 public: 00017 virtual ~TestFixture() {}; 00018 00020 virtual void setUp() {}; 00021 00023 virtual void tearDown() {}; 00024 }; 00025 00026 00027 } 00028 00029 #endif
|
hosts this site. |
Send comments to: CppUnit Developers |