mediasettings/videosettingsplugin/tsrc/testplugin/inc/testvideosettingsplugin.h
changeset 46 adbe7d5ba2f5
equal deleted inserted replaced
28:c48470be1ba7 46:adbe7d5ba2f5
       
     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:   TestVideoSettingsPlugin class definition
       
    15 * 
       
    16 */
       
    17 
       
    18 #ifndef TESTVIDEOSETTINGSPLUGIN_H
       
    19 #define TESTVIDEOSETTINGSPLUGIN_H
       
    20 
       
    21 
       
    22 // INCLUDES
       
    23 #include <qobject.h>
       
    24 
       
    25 class CpItemDataHelper;
       
    26 class VideoSettingsPlugin;
       
    27 
       
    28 class TestVideoSettingsPlugin : public QObject
       
    29 	{
       
    30     
       
    31     Q_OBJECT
       
    32 
       
    33 private slots:
       
    34     
       
    35     /**
       
    36      * called at the very beginning of the test
       
    37      */
       
    38     void initTestCase();
       
    39     
       
    40     /**
       
    41      * called at the very end of the test
       
    42      */
       
    43     void cleanupTestCase();
       
    44     
       
    45     /**
       
    46      * called at the start of every test.
       
    47      */
       
    48     void init();
       
    49     
       
    50     /**
       
    51      * called at the end of every test.
       
    52      */
       
    53     void cleanup();
       
    54     
       
    55     /**
       
    56      * test createSettingFormItemData
       
    57      */
       
    58     void testCreateSettingFormItemData();
       
    59 
       
    60 private:
       
    61     
       
    62     CpItemDataHelper* mItemHelper;
       
    63     
       
    64     VideoSettingsPlugin* mPlugin;
       
    65     
       
    66     };
       
    67 
       
    68 #endif  // TESTVIDEOSETTINGSPLUGIN_H
       
    69 
       
    70 // End of File