appinstaller/AppinstUi/sifuidevicedialogplugin/tsrc/ut_sifuidevicedialog/ut_sifuidevicedialog.h
branchRCL_3
changeset 25 7333d7932ef7
equal deleted inserted replaced
24:5cc91383ab1e 25:7333d7932ef7
       
     1 /*
       
     2 * Copyright (c) 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: Unit test definitions for SIF UI device dialog.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef UT_SIFUIDEVICEDIALOG_H
       
    19 #define UT_SIFUIDEVICEDIALOG_H
       
    20 
       
    21 #include <QtTest/QtTest>
       
    22 
       
    23 class TestSifUiDeviceDialog : public QObject
       
    24 {
       
    25     Q_OBJECT
       
    26 
       
    27 private slots:
       
    28     // Called first before first test case
       
    29     void initTestCase();
       
    30     // Called before each test case
       
    31     void init();
       
    32     // Called after every test case
       
    33     void cleanup();
       
    34     // Called after the last test case
       
    35     void cleanupTestCase();
       
    36 
       
    37     // Test cases
       
    38     void showInfoNote();
       
    39 
       
    40 private:
       
    41     
       
    42 
       
    43 };
       
    44 
       
    45 
       
    46 #endif  //  UT_SIFUIDEVICEDIALOG_H
       
    47