From b79d2d799acd4c56556b4745d79a828c8eb57847 Mon Sep 17 00:00:00 2001 From: tslettebo Date: Mon, 16 Sep 2002 02:23:07 +0000 Subject: [PATCH] no message git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@51 7ec92016-0320-0410-acc4-a06ded1c099a --- tools/RegressionTest2/LokiTest.h | 36 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tools/RegressionTest2/LokiTest.h b/tools/RegressionTest2/LokiTest.h index 31cf5d5..1fc9be5 100644 --- a/tools/RegressionTest2/LokiTest.h +++ b/tools/RegressionTest2/LokiTest.h @@ -18,13 +18,13 @@ #include "TypelistTest.h" #include "TypeManipTest.h" #include "TypeTraitsTest.h" -//#include "SmallObjectTest.h" -//#include "SingletonTest.h" -//#include "SmartPtrTest.h" -//#include "FactoryTest.h" +#include "SmallObjectTest.h" +#include "SingletonTest.h" +#include "SmartPtrTest.h" +#include "FactoryTest.h" #include "AbstractFactoryTest.h" -//#include "AssocVectorTest.h" -//#include "FunctorTest.h" +#include "AssocVectorTest.h" +#include "FunctorTest.h" /////////////////////////////////////////////////////////////////////////////// // LokiTest @@ -49,13 +49,13 @@ private: tests.add(typelistTest); tests.add(typeManipTest); tests.add(typeTraitsTest); -// tests.add(smallObjectTest); -// tests.add(singletonTest); -// tests.add(smartPtrTest); -// tests.add(factoryTest); + tests.add(smallObjectTest); + tests.add(singletonTest); + tests.add(smartPtrTest); + tests.add(factoryTest); tests.add(abstractFactoryTest); -// tests.add(assocVectorTest); -// tests.add(functorTest); + tests.add(assocVectorTest); + tests.add(functorTest); } private: @@ -65,13 +65,13 @@ private: TypelistTest typelistTest; TypeManipTest typeManipTest; TypeTraitsTest typeTraitsTest; -// SmallObjectTest smallObjectTest; -// SingletonTest singletonTest; -// SmartPtrTest smartPtrTest; -// FactoryTest factoryTest; + SmallObjectTest smallObjectTest; + SingletonTest singletonTest; + SmartPtrTest smartPtrTest; + FactoryTest factoryTest; AbstractFactoryTest abstractFactoryTest; -// AssocVectorTest assocVectorTest; -// FunctorTest functorTest; + AssocVectorTest assocVectorTest; + FunctorTest functorTest; }; #endif