CppUnit project page | FAQ | CppUnit home page |
00001 #ifndef CPPUNIT_EXTENSIONS_TESTFACTORY_H 00002 #define CPPUNIT_EXTENSIONS_TESTFACTORY_H 00003 00004 #include <cppunit/Portability.h> 00005 00006 namespace CppUnit { 00007 00008 class Test; 00009 00012 class CPPUNIT_API TestFactory 00013 { 00014 public: 00015 virtual ~TestFactory() {} 00016 00020 virtual Test* makeTest() = 0; 00021 }; 00022 00023 } // namespace CppUnit 00024 00025 #endif // CPPUNIT_EXTENSIONS_TESTFACTORY_H
hosts this site. |
Send comments to: CppUnit Developers |