vmbx/vmbxcpplugin/tsrc/inc/ut_vmbxuiengine.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2 * Copyright (c) 2009 - 2010 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:  Implementation of the Ut_VmbxUiEngine class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef UT_VMBXUIENGINE_H
       
    20 #define UT_VMBXUIENGINE_H
       
    21 
       
    22 #include <QObject>
       
    23 
       
    24 // Class forwards
       
    25 class VmbxUiEngine;
       
    26 
       
    27 static TInt globalExpRet;
       
    28 static QString globalNumber;
       
    29 
       
    30 /*!
       
    31     Ut_VmbxUiEngine module test class.
       
    32 
       
    33     Tests Ut_VmbxUiEngine interface.
       
    34     See cpp file for more information.
       
    35 
       
    36     @lib Ut_VmbxUiEngine.lib
       
    37 */
       
    38 class Ut_VmbxUiEngine : public QObject
       
    39 {
       
    40     Q_OBJECT
       
    41 
       
    42 private slots: 
       
    43 
       
    44     void initTestCase();
       
    45     void cleanupTestCase();
       
    46     
       
    47     void testCsVoice1Number();
       
    48     void testCsVideo1Number();      
       
    49     void testIsVideoSupport();
       
    50     void testHandleNotifyL();
       
    51     
       
    52 private:  //data
       
    53 
       
    54     /*!
       
    55         Own.
       
    56     */
       
    57     VmbxUiEngine *mUiEngine;
       
    58 };
       
    59 
       
    60 #endif // _UT_VMBXUIENGINE_H