Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members

TestSuite.cpp

Go to the documentation of this file.
00001 // Template for a test suite.
00002 
00003 #include <cppunit/extensions/HelperMacros.h>
00004 #include <cppunit/Asserter.h>
00005 #include "Asserts.h"
00006 
00007 
00008 
00009 class Testname : public CppUnit::TestFixture {
00010   CPPUNIT_TEST_SUITE(Testname);
00011   CPPUNIT_TEST(aTest);
00012   CPPUNIT_TEST_SUITE_END();
00013 
00014 
00015 private:
00016 
00017 public:
00018   void setUp() {
00019   }
00020   void tearDown() {
00021   }
00022 protected:
00023   void aTest();
00024 };
00025 
00026 CPPUNIT_TEST_SUITE_REGISTRATION(Testname);
00027 
00028 void Testname::aTest() {
00029 }

Generated on Fri Mar 12 13:04:04 2004 for Scripted Readout by doxygen 1.3.4