camerauis/cameraxui/cxengine/tsrc/unit/unittest_cxesettingscontrolsymbian/unittest_cxesettingscontrolsymbian.h
branchRCL_3
changeset 54 bac7acad7cb3
parent 53 61bc0f252b2b
child 57 2c87b2808fd7
equal deleted inserted replaced
53:61bc0f252b2b 54:bac7acad7cb3
     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 
       
    18 #ifndef UNITTEST_CXESETTINGSCONTROLSYMBIAN_H
       
    19 #define UNITTEST_CXESETTINGSCONTROLSYMBIAN_H
       
    20 
       
    21 #include <QObject>
       
    22 
       
    23 class CxeSettingsControlSymbian;
       
    24 class CxeFakeSettings;
       
    25 class CxeFakeCameraDevice;
       
    26 class CxeFakeCameraDeviceControl;
       
    27 
       
    28 
       
    29 
       
    30 /*!
       
    31 * Unit test class for CxeSettingsControlSymbian.
       
    32 */
       
    33 class UnitTestCxeSettingsControlSymbian : public QObject
       
    34 {
       
    35     Q_OBJECT
       
    36 
       
    37 public:
       
    38     UnitTestCxeSettingsControlSymbian();
       
    39     ~UnitTestCxeSettingsControlSymbian();
       
    40 
       
    41 private slots:
       
    42     void init();
       
    43     void cleanup();
       
    44 
       
    45     void testHandleSettingValueChanged();
       
    46     void testHandleSceneChanged();
       
    47 
       
    48 private:
       
    49     CxeSettingsControlSymbian *mSettingsControl;
       
    50 
       
    51     CxeFakeSettings *mSettings;
       
    52     CxeFakeCameraDevice *mCameraDevice;
       
    53     CxeFakeCameraDeviceControl *mCameraDeviceControl;
       
    54 };
       
    55 
       
    56 #endif // UNITTEST_CXESETTINGSCONTROLSYMBIAN_H
       
    57