os/mm/imagingandcamerafws/cameraunittest/src/TSU_ECM_ADV/ECamEnhanceFuncTest.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 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // ECamEnhaceFuncTest.h
    15 // 
    16 //
    17 
    18 #ifndef ECAMENHANCEFUNCTEST_H
    19 #define ECAMENHANCEFUNCTEST_H
    20 
    21 #include <testframework.h>
    22 #include "ECamObserverTest.h"
    23 #include "EnhanceFunctionality.h"
    24 
    25 
    26 class RECamHistTest : public RTestStep
    27 	{
    28 public:
    29 	static RECamHistTest* NewL(const TDesC& aTestStep);
    30 protected:
    31 	// from RTestStep;
    32 	TVerdict DoTestStepL();
    33 	
    34 	// new
    35 	TVerdict DoTestStep_20L();
    36 	TVerdict DoTestStep_21L();
    37 	TVerdict DoTestStep_22L();
    38 	
    39 	TVerdict DoHistTestStepL();
    40 	
    41 private:
    42 	RECamHistTest(const TDesC& aTestStep);
    43 	};
    44 
    45 class RECamHistogramNotificationTest : public RECamObserverTest
    46 	{
    47 public:
    48 	static RECamHistogramNotificationTest* NewL(TBool aAllocTest);
    49 
    50 protected:
    51 	// from RTestStep;
    52 	TVerdict DoTestStepL();
    53 	void ConstructL();
    54 	
    55 private:
    56 	RECamHistogramNotificationTest(TBool aAllocTest);
    57 	RArray<TUid> iOriginalSet;
    58 	RArray<TUid> iResultSet;
    59 	TUid iInputEventUid;
    60 	};
    61 	
    62 
    63 // Overlay tests class
    64 class RECamOvrlayTest : public RTestStep
    65 	{
    66 public:
    67 	static RECamOvrlayTest* NewL(const TDesC& aTestStep);
    68 protected:
    69 	// from RTestStep;
    70 	TVerdict DoTestStepL();
    71 	TVerdict DoTestStep_30L();
    72 	TVerdict DoTestStep_31L();
    73 	
    74 	TVerdict DoOverlayTestStepL();	
    75 	
    76 private:
    77 	RECamOvrlayTest(const TDesC& aTestStep);
    78 	};
    79 
    80 
    81 // Snapshot test
    82 class RECamSnapTest : public RTestStep
    83 	{
    84 public:
    85 	static RECamSnapTest* NewL(const TDesC& aTestStep);
    86 protected:
    87 	// from RTestStep;
    88 	TVerdict DoTestStepL();
    89 	
    90 	// new
    91 	TVerdict DoTestStep_40L();
    92 	TVerdict DoTestStep_41L();
    93 	TVerdict DoTestStep_42L();
    94 	
    95 	TVerdict DoSnapTestStepL();
    96 	
    97 private:
    98 	RECamSnapTest(const TDesC& aTestStep);
    99 	};
   100 
   101 class RECamSnapNotificationTest : public RECamObserverTest
   102 	{
   103 public:
   104 	static RECamSnapNotificationTest* NewL(TBool aAllocTest);
   105 
   106 protected:
   107 	// from RTestStep;
   108 	TVerdict DoTestStepL();
   109 	void ConstructL();
   110 	
   111 private:
   112 	RECamSnapNotificationTest(TBool aAllocTest);
   113 	RArray<TUid> iOriginalSet;
   114 	RArray<TUid> iResultSet;
   115 	TUid iInputEventUid;
   116 	};
   117 
   118 #endif // ECAMENHANCEFUNCTEST_H
   119