phonebookengines/mobcntmodel/tsrc/ut_mobcntmodel/inc/ut_mobcnticonmanager.h
changeset 37 fd64c38c277d
parent 31 2a11b5b00470
child 40 b46a585f6909
equal deleted inserted replaced
31:2a11b5b00470 37:fd64c38c277d
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <QtTest/QtTest>
       
    19 #include <QObject>
       
    20 
       
    21 class MobCntIconManager;
       
    22 
       
    23 class TestMobCntIconManager: public QObject
       
    24 {
       
    25     Q_OBJECT
       
    26 
       
    27 private slots:
       
    28     void init();
       
    29     void cleanup();
       
    30 	void initTestCase();
       
    31     void cleanupTestCase();
       
    32     void testNonExistingIcon();
       
    33     void testOneExistingIcon();
       
    34     void testCancel();
       
    35     void testMultipleExistingIcon();
       
    36 	
       
    37 private:
       
    38 	
       
    39     MobCntIconManager* mIconMgr; // SUT 
       
    40     QIcon mIcon;
       
    41   
       
    42 };