CppUnit project page | FAQ | CppUnit home page |
00001 #ifndef CPPUNIT_EXTENSIONS_TESTFACTORY_H 00002 #define CPPUNIT_EXTENSIONS_TESTFACTORY_H 00003 00004 namespace CppUnit { 00005 00006 class Test; 00007 00010 class TestFactory 00011 { 00012 public: 00013 virtual ~TestFactory() {} 00014 00018 virtual Test* makeTest() = 0; 00019 }; 00020 00021 } // namespace CppUnit 00022 00023 #endif // CPPUNIT_EXTENSIONS_TESTFACTORY_H
|
hosts this site. |
Send comments to: CppUnit Developers |