camerauis/cameraxui/cxengine/tsrc/unit/unittest_cxegeotaggingtrail/unittest_cxegeotaggingtrail.h
changeset 58 ddba9caa7f32
equal deleted inserted replaced
55:0da2a5b56583 58:ddba9caa7f32
       
     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 UNITTEST_CXEGEOTAGGINGTRAIL_H
       
    18 #define UNITTEST_CXEGEOTAGGINGTRAIL_H
       
    19 
       
    20 #include <QObject>
       
    21 
       
    22 // forward declartion
       
    23 class CxeFakeSettings;
       
    24 class CxeGeoTaggingTrail;
       
    25 
       
    26 // class defining unit test cases for CxeGeoTaggingTrail engine class
       
    27 
       
    28 class UnitTestCxeGeoTaggingTrail : public QObject
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32 public:
       
    33     UnitTestCxeGeoTaggingTrail();
       
    34     ~UnitTestCxeGeoTaggingTrail();
       
    35 
       
    36 private slots:
       
    37     void init();
       
    38     void cleanup();
       
    39     void testStart();
       
    40     void testStop();
       
    41     void testState();
       
    42 
       
    43 
       
    44 private:
       
    45     // data
       
    46     CxeGeoTaggingTrail *mTrail;
       
    47     CxeFakeSettings *mSettings;
       
    48 };
       
    49 
       
    50 #endif // UNITTEST_CXEGEOTAGGINGTRAIL_H