CppUnit project page FAQ CppUnit home page

Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

TestFactory.h

Go to the documentation of this file.
00001 #ifndef CPPUNIT_EXTENSIONS_TESTFACTORY_H
00002 #define CPPUNIT_EXTENSIONS_TESTFACTORY_H
00003 
00004 #include <cppunit/Portability.h>
00005 
00006 CPPUNIT_NS_BEGIN
00007 
00008 
00009 class Test;
00010 
00013 class CPPUNIT_API TestFactory 
00014 {
00015 public:
00016   virtual ~TestFactory() {}
00017 
00021   virtual Test* makeTest() = 0;
00022 };
00023 
00024 
00025 CPPUNIT_NS_END
00026 
00027 #endif  // CPPUNIT_EXTENSIONS_TESTFACTORY_H

SourceForge Logo hosts this site. Send comments to:
CppUnit Developers