testregistry.h

Go to the documentation of this file.
00001 /****************************************************************************
00002 ** Copyright (C) 2001-2011 Klaralvdalens Datakonsult AB.  All rights reserved.
00003 **
00004 ** This file is part of the KD Chart library.
00005 **
00006 ** Licensees holding valid commercial KD Chart licenses may use this file in
00007 ** accordance with the KD Chart Commercial License Agreement provided with
00008 ** the Software.
00009 **
00010 **
00011 ** This file may be distributed and/or modified under the terms of the
00012 ** GNU General Public License version 2 and version 3 as published by the
00013 ** Free Software Foundation and appearing in the file LICENSE.GPL.txt included.
00014 **
00015 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
00016 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00017 **
00018 ** Contact info@kdab.com if any conditions of this licensing are not
00019 ** clear to you.
00020 **
00021 **********************************************************************/
00022 
00023 #ifndef __KDAB__UNITTEST__TESTREGISTRY_H__
00024 #define __KDAB__UNITTEST__TESTREGISTRY_H__
00025 
00026 #ifndef KDAB_NO_UNIT_TESTS
00027 
00028 #include "../../kdchart_export.h"
00029 #include "../kdganttglobal.h"
00030 
00031 #include <string>
00032 #include <map>
00033 #include <vector>
00034 #include <cassert>
00035 
00036 namespace KDAB {
00037 namespace UnitTest {
00038 
00039     class Test;
00040     class TestFactory;
00041 
00042     class KDCHART_EXPORT TestRegistry {
00043         friend class ::KDAB::UnitTest::TestFactory;
00044         static TestRegistry * mSelf;
00045         TestRegistry();
00046         ~TestRegistry();
00047     public:
00048         static TestRegistry * instance();
00049         static void deleteInstance();
00050 
00051         void registerTestFactory( const TestFactory * tf, const char * group );
00052 
00055         unsigned int run() const;
00058         unsigned int run( const char * group ) const;
00059 
00060     private:
00061         std::map< std::string, std::vector<const TestFactory*> > mTests;
00062     };
00063 
00064     class KDCHART_EXPORT Runner {
00065     public:
00066         ~Runner();
00067         unsigned int run( const char * group=0 ) const;
00068     };
00069 
00070 }
00071 }
00072 
00073 #endif // KDAB_NO_UNIT_TESTS
00074 
00075 #endif // __KDAB__UNITTEST__TESTREGISTRY_H__
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Defines

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-chart/