1 #ifndef CPPUNIT_EXTENSIONS_TESTFACTORYREGISTRY_H
2 #define CPPUNIT_EXTENSIONS_TESTFACTORYREGISTRY_H
6 #if CPPUNIT_NEED_DLL_DECL
7 #pragma warning( push )
8 #pragma warning( disable: 4251) // X needs to have dll-interface to be used by clients of class Z
20 #if CPPUNIT_NEED_DLL_DECL
138 void addRegistry(
const std::string &name );
153 static bool isValid();
160 void registerFactory(
const std::string &name,
168 typedef CppUnitSet<TestFactory *, std::less<TestFactory*> >
Factories;
177 #if CPPUNIT_NEED_DLL_DECL
178 #pragma warning( pop )
182 #endif // CPPUNIT_EXTENSIONS_TESTFACTORYREGISTRY_H
Base class for all test objects.All test objects should be a subclass of Test. Some test objects...
Definition: Test.h:25
std::string m_name
Definition: TestFactoryRegistry.h:171
Factories m_factories
Definition: TestFactoryRegistry.h:169
CppUnitSet< TestFactory *, std::less< TestFactory * > > Factories
Definition: TestFactoryRegistry.h:168
#define CPPUNIT_NS_END
Definition: Portability.h:120
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:119
virtual Test * makeTest()=0
Registry for TestFactory.Notes that the registry DON'T assumes lifetime control for any registered te...
Definition: TestFactoryRegistry.h:80
Abstract Test factory.
Definition: TestFactory.h:13
A Composite of Tests.It runs a collection of test cases. Here is an example.
Definition: TestSuite.h:40
#define CPPUNIT_API
Definition: CppUnitApi.h:27