controlpanel/tsrc/unit/ut_profileengwrapper/src/ut_profileengwrapper.h
branchRCL_3
changeset 24 8ee96d21d9bf
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
       
     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 #ifndef	UT_PROFILEENGWRAPPER_H
       
    18 #define	UT_PROFILEENGWRAPPER_H
       
    19 
       
    20 #include <QObject>
       
    21 
       
    22 class CpProfileEngine;
       
    23 
       
    24 class TestProfileEngWrapper : public QObject
       
    25 {
       
    26 	Q_OBJECT
       
    27 private slots:
       
    28     void initTestCase();	// initialize test data
       
    29     
       
    30     void testProfileList();
       
    31     void testModifyProfile();
       
    32     void testCreateAndDeleteProfile();
       
    33     
       
    34     void cleanupTestCase();	//Finalize test data
       
    35 private:
       
    36     CpProfileEngine *mProfileEng;
       
    37 };
       
    38 
       
    39 
       
    40 #endif	//UT_PROFILEENGWRAPPER_H