no message

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@51 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
tslettebo 2002-09-16 02:23:07 +00:00
parent a12930a53d
commit b79d2d799a

View file

@ -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