summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-02-11 12:14:00 (GMT)
commit0efa7c32aaf21a29b42b5926cc116007056843be (patch)
tree882f663a5dd0e65694bf6077b71086dd77fd7ff8 /3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h
parent1d20eabbc32274b491b4c2bedf73d19933d97bfd (diff)
downloadswift-0efa7c32aaf21a29b42b5926cc116007056843be.zip
swift-0efa7c32aaf21a29b42b5926cc116007056843be.tar.bz2
Moved some modules into separate git modules.
Diffstat (limited to '3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h')
m---------3rdParty/CppUnit0
-rw-r--r--3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h83
2 files changed, 0 insertions, 83 deletions
diff --git a/3rdParty/CppUnit b/3rdParty/CppUnit
new file mode 160000
+Subproject b4c34eb947c6497c6387c55c7581ec875f4e7d4
diff --git a/3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h b/3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h
deleted file mode 100644
index e04adb5..0000000
--- a/3rdParty/CppUnit/cppunit/extensions/AutoRegisterSuite.h
+++ /dev/null
@@ -1,83 +0,0 @@
-#ifndef CPPUNIT_EXTENSIONS_AUTOREGISTERSUITE_H
-#define CPPUNIT_EXTENSIONS_AUTOREGISTERSUITE_H
-
-#include <cppunit/extensions/TestSuiteFactory.h>
-#include <cppunit/extensions/TestFactoryRegistry.h>
-#include <string>
-
-CPPUNIT_NS_BEGIN
-
-
-/*! \brief (Implementation) Automatically register the test suite of the specified type.
- *
- * You should not use this class directly. Instead, use the following macros:
- * - CPPUNIT_TEST_SUITE_REGISTRATION()
- * - CPPUNIT_TEST_SUITE_NAMED_REGISTRATION()
- *
- * This object will register the test returned by TestCaseType::suite()
- * when constructed to the test registry.
- *
- * This object is intented to be used as a static variable.
- *
- *
- * \param TestCaseType Type of the test case which suite is registered.
- * \see CPPUNIT_TEST_SUITE_REGISTRATION, CPPUNIT_TEST_SUITE_NAMED_REGISTRATION
- * \see CppUnit::TestFactoryRegistry.
- */
-template<class TestCaseType>
-class AutoRegisterSuite
-{
-public:
- /** Auto-register the suite factory in the global registry.
- */
- AutoRegisterSuite()
- : m_registry( &TestFactoryRegistry::getRegistry() )
- {
- m_registry->registerFactory( &m_factory );
- }
-
- /** Auto-register the suite factory in the specified registry.
- * \param name Name of the registry.
- */
- AutoRegisterSuite( const std::string &name )
- : m_registry( &TestFactoryRegistry::getRegistry( name ) )
- {
- m_registry->registerFactory( &m_factory );
- }
-
- ~AutoRegisterSuite()
- {
- if ( TestFactoryRegistry::isValid() )
- m_registry->unregisterFactory( &m_factory );
- }
-
-private:
- TestFactoryRegistry *m_registry;
- TestSuiteFactory<TestCaseType> m_factory;
-};
-
-
-/*! \brief (Implementation) Automatically adds a registry into another registry.
- *
- * Don't use this class. Use the macros CPPUNIT_REGISTRY_ADD() and
- * CPPUNIT_REGISTRY_ADD_TO_DEFAULT() instead.
- */
-class AutoRegisterRegistry
-{
-public:
- AutoRegisterRegistry( const std::string &which,
- const std::string &to )
- {
- TestFactoryRegistry::getRegistry( to ).addRegistry( which );
- }
-
- AutoRegisterRegistry( const std::string &which )
- {
- TestFactoryRegistry::getRegistry().addRegistry( which );
- }
-};
-
-
-CPPUNIT_NS_END
-
-#endif // CPPUNIT_EXTENSIONS_AUTOREGISTERSUITE_H