sl@0
|
1 |
|
sl@0
|
2 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
// All rights reserved.
|
sl@0
|
4 |
// This component and the accompanying materials are made available
|
sl@0
|
5 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
// which accompanies this distribution, and is available
|
sl@0
|
7 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
//
|
sl@0
|
9 |
// Initial Contributors:
|
sl@0
|
10 |
// Nokia Corporation - initial contribution.
|
sl@0
|
11 |
//
|
sl@0
|
12 |
// Contributors:
|
sl@0
|
13 |
//
|
sl@0
|
14 |
// Description:
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef ECamImageProcessingTest_H
|
sl@0
|
18 |
#define ECamImageProcessingTest_H
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <testframework.h>
|
sl@0
|
21 |
#include "ECamObserverTest.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
class RECamImageProcessingTest : public RTestStep
|
sl@0
|
24 |
{
|
sl@0
|
25 |
public:
|
sl@0
|
26 |
static RECamImageProcessingTest* NewL(TBool aAllocTest);
|
sl@0
|
27 |
protected:
|
sl@0
|
28 |
// from RTestStep;
|
sl@0
|
29 |
TVerdict DoTestStepL();
|
sl@0
|
30 |
TVerdict DoImageProcessingTestStepL();
|
sl@0
|
31 |
private:
|
sl@0
|
32 |
RECamImageProcessingTest(TBool aAllocTest);
|
sl@0
|
33 |
};
|
sl@0
|
34 |
|
sl@0
|
35 |
class RECamImageProcDefaultsTest : public RECamObserverTest /*RTestStep, public MCameraObserver2*/
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
static RECamImageProcDefaultsTest* NewL(TBool aAllocTest);
|
sl@0
|
39 |
protected:
|
sl@0
|
40 |
// from RTestStep;
|
sl@0
|
41 |
TVerdict DoTestStepL();
|
sl@0
|
42 |
TBool CompareUidArrays(RArray<TUid>& firstArray, RArray<TUid>& secondArray);
|
sl@0
|
43 |
private:
|
sl@0
|
44 |
RECamImageProcDefaultsTest(TBool aAllocTest);
|
sl@0
|
45 |
void TestColorSwapL(CCamera::CCameraImageProcessing* aImageProcess, TVerdict& aResult);
|
sl@0
|
46 |
void TestColorAccentL(CCamera::CCameraImageProcessing* aImageProcess, TVerdict& aResult);
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
TUid iInputEventUid;
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
class RECamImageProcRangesTest : public RECamObserverTest /*RTestStep, public MCameraObserver2*/
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
static RECamImageProcRangesTest* NewL(TBool aAllocTest);
|
sl@0
|
55 |
protected:
|
sl@0
|
56 |
// from RTestStep;
|
sl@0
|
57 |
TVerdict DoTestStepL();
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
RECamImageProcRangesTest(TBool aAllocTest);
|
sl@0
|
60 |
TUid iInputEventUid;
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
class RECamImageProcNegTest : public RECamObserverTest /*RTestStep, public MCameraObserver2*/
|
sl@0
|
64 |
{
|
sl@0
|
65 |
public:
|
sl@0
|
66 |
static RECamImageProcNegTest* NewL(TBool aAllocTest);
|
sl@0
|
67 |
protected:
|
sl@0
|
68 |
// from RTestStep;
|
sl@0
|
69 |
TVerdict DoTestStepL();
|
sl@0
|
70 |
private:
|
sl@0
|
71 |
RECamImageProcNegTest(TBool aAllocTest);
|
sl@0
|
72 |
TUid iInputEventUid;
|
sl@0
|
73 |
};
|
sl@0
|
74 |
|
sl@0
|
75 |
class RECamImageProcBaselineTest : public RECamObserverTest /*RTestStep, public MCameraObserver2*/
|
sl@0
|
76 |
{
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
static RECamImageProcBaselineTest* NewL(TBool aAllocTest);
|
sl@0
|
79 |
protected:
|
sl@0
|
80 |
// from RTestStep;
|
sl@0
|
81 |
TVerdict DoTestStepL();
|
sl@0
|
82 |
TBool CompareUidArrays(RArray<TUid>& firstArray, RArray<TUid>& secondArray);
|
sl@0
|
83 |
private:
|
sl@0
|
84 |
RECamImageProcBaselineTest(TBool aAllocTest);
|
sl@0
|
85 |
TUid iInputEventUid;
|
sl@0
|
86 |
};
|
sl@0
|
87 |
#endif // ECamImageProcessingTest_H
|