KD Chart 2  [rev.2.5]
testregistry.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 ** Copyright (C) 2001-2012 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 "../kdganttglobal.h"
00029 
00030 #include <string>
00031 #include <map>
00032 #include <vector>
00033 #include <cassert>
00034 
00035 namespace KDAB {
00036 namespace UnitTest {
00037 
00038     class Test;
00039     class TestFactory;
00040 
00041     class KDCHART_EXPORT TestRegistry {
00042         friend class ::KDAB::UnitTest::TestFactory;
00043         static TestRegistry * mSelf;
00044         TestRegistry();
00045         ~TestRegistry();
00046     public:
00047         static TestRegistry * instance();
00048         static void deleteInstance();
00049 
00050         void registerTestFactory( const TestFactory * tf, const char * group );
00051 
00054         unsigned int run() const;
00057         unsigned int run( const char * group ) const;
00058 
00059     private:
00060         std::map< std::string, std::vector<const TestFactory*> > mTests;
00061     };
00062 
00063     class KDCHART_EXPORT Runner {
00064     public:
00065         ~Runner();
00066         unsigned int run( const char * group=0 ) const;
00067     };
00068 
00069 }
00070 }
00071 
00072 #endif // KDAB_NO_UNIT_TESTS
00073 
00074 #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/