vmbx/vmbxcpplugin/tsrc/inc/ut_vmbxcpplugin.h
branchRCL_3
changeset 19 7d48bed6ce0c
equal deleted inserted replaced
18:594d59766373 19:7d48bed6ce0c
       
     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_vmbxCpPlugin class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef UT_VMBXCPPLUGIN_H
       
    20 #define UT_VMBXCPPLUGIN_H
       
    21 
       
    22 // System includes
       
    23 #include <QtTest/QtTest>
       
    24 #include <QObject>
       
    25 
       
    26 /*!
       
    27     Ut_vmbxCpPlugin module test class.
       
    28 
       
    29     Tests Ut_vmbxCpPlugin interface.
       
    30     See cpp file for more information.
       
    31 
       
    32     @lib Ut_vmbxCpPlugin.lib
       
    33 */
       
    34 
       
    35 // Class declaration
       
    36 class Ut_vmbxCpPlugin : public QObject
       
    37 {
       
    38     Q_OBJECT
       
    39 
       
    40 private slots: 
       
    41 
       
    42     /*!
       
    43         Test method in VmbxCpPlugin
       
    44     */
       
    45     void testCreateSettingFormItemData();
       
    46     
       
    47     /*!
       
    48         Test method in VmbxCpGroup
       
    49     */    
       
    50     void testCreateVmbxCpGroup();
       
    51 };
       
    52 
       
    53 #endif // _UT_VMBXCPPLUGIN_H