os/mm/imagingandcamerafws/cameraunittest/src/TSU_ECM_ADV/ECamPresetsTest.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 
     2 // Copyright (c) 2004-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 ECamPresetsTest_H
    18 #define ECamPresetsTest_H
    19 
    20 #include <testframework.h>
    21 #include "ECamObserverTest.h"
    22 
    23 class RECamPresetsTest : public RTestStep
    24 	{
    25 public:
    26 	static RECamPresetsTest* NewL(TBool aAllocTest);
    27 protected:
    28 	// from RTestStep;
    29 	TVerdict DoTestStepL();
    30 	TVerdict DoPresetsTestStepL();
    31 private:
    32 	RECamPresetsTest(TBool aAllocTest);
    33 	
    34 	};
    35 
    36 class RECamPresetsNotificationTest : public RECamObserverTest
    37 	{
    38 public:
    39 	static RECamPresetsNotificationTest* NewL(TBool aAllocTest);
    40 
    41 protected:
    42 	// from RTestStep;
    43 	TVerdict DoTestStepL();
    44 	void ConstructL();
    45 	
    46 private:
    47 	RECamPresetsNotificationTest(TBool aAllocTest);
    48 	RArray<TUid> iOriginalSet;
    49 	RArray<TUid> iResultSet;
    50 	TUid iInputEventUid;
    51 	};
    52 	
    53 class RECamPresetsBaselineTest : public RECamObserverTest
    54 	{
    55 public:
    56 	static RECamPresetsBaselineTest* NewL(TBool aAllocTest);
    57 
    58 protected:
    59 	// from RTestStep;
    60 	TVerdict DoTestStepL();
    61 	void ConstructL();
    62 	
    63 private:
    64 	RECamPresetsBaselineTest(TBool aAllocTest);
    65 	RArray<TUid> iOriginalSet;
    66 	RArray<TUid> iResultSet;
    67 	TUid iInputEventUid;
    68 	};
    69 
    70 	
    71 class RECamPresetsNegTest : public RECamObserverTest
    72 	{
    73 public:
    74 	static RECamPresetsNegTest* NewL(TBool aAllocTest);
    75 protected:
    76 	// from RTestStep;
    77 	TVerdict DoTestStepL();
    78 private:
    79 	RECamPresetsNegTest(TBool aAllocTest);
    80 	TUid iInputEventUid;
    81 	};
    82 #endif // ECamPresetsTest_H
    83