ProcTest.h

Go to the documentation of this file.
00001 /*==============================================================================
00002  * FILE:       ProcTest.h
00003  * OVERVIEW:   Provides the interface for the ProcTest class, which
00004  *              tests the Proc class
00005  *============================================================================*/
00006 /*
00007  * $Revision: 1.5 $
00008  *
00009  * 23 Apr 02 - Mike: Created
00010  */
00011 
00012 #include <cppunit/TestCaller.h>
00013 #include <cppunit/TestCase.h>
00014 #include <cppunit/TestSuite.h>
00015 
00016 #include "proc.h"
00017 #include "prog.h"
00018 
00019 class ProcTest : public CppUnit::TestCase {
00020   protected:
00021     Proc*  m_proc;
00022     
00023 
00024   public:
00025     ProcTest(std::string name) : CppUnit::TestCase (name)
00026     {}
00027 
00028     virtual void registerTests(CppUnit::TestSuite* suite);
00029 
00030     int countTestCases () const;
00031 
00032     void setUp ();
00033     void tearDown ();
00034 
00035     void testName ();
00036 };
00037 

Generated on Tue Sep 19 21:18:30 2006 for Boomerang by  doxygen 1.4.6