|
1 // Copyright (c) 2002-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 // This file contains the test steps ICL positive testing |
|
15 // |
|
16 // |
|
17 |
|
18 |
|
19 #ifndef __TESTPOSITIVECONVERSION__ |
|
20 #define __TESTPOSITIVECONVERSION__ |
|
21 |
|
22 |
|
23 // EPOC includes |
|
24 #include "TestStepConversion.h" |
|
25 |
|
26 class CTestPositiveConversion : public CTestStepConversion |
|
27 { |
|
28 public: |
|
29 static CTestPositiveConversion* NewL(const TDesC& aTestName); |
|
30 TVerdict Step0001_0010_CP(); |
|
31 TVerdict Step0011_0014_CP(); |
|
32 TVerdict Step0015_CP(); |
|
33 TVerdict Step0016_CP(); |
|
34 TVerdict Step0017_CP(); |
|
35 //------- |
|
36 TVerdict Step0101_LP(); |
|
37 TVerdict Step0102_LP(); |
|
38 TVerdict Step0103_LP(); |
|
39 TVerdict Step0104_LP(); |
|
40 TVerdict Step0105_LP(); |
|
41 TVerdict Step0106_HP(); |
|
42 TVerdict Step0107_HP(); |
|
43 //----- |
|
44 TVerdict Step0109_HP(); |
|
45 TVerdict Step0110_HP(); |
|
46 TVerdict Step0111_HP(); |
|
47 TVerdict Step0112_HP(); |
|
48 TVerdict Step0113_CP(); |
|
49 TVerdict Step0114_HP(); |
|
50 TVerdict Step0115_HP(); |
|
51 |
|
52 TVerdict Step0200_CP(); |
|
53 TVerdict Step0300_HP(); |
|
54 |
|
55 TVerdict Step0600_HP(); |
|
56 TVerdict Step0601_HP(); |
|
57 TVerdict Step0608_HP(); |
|
58 TVerdict Step0609_HP(); |
|
59 TVerdict Step0610_HP(); |
|
60 TVerdict Step0611_HP(); |
|
61 |
|
62 TVerdict Step0612_HP(); |
|
63 TVerdict Step0613_HP(); |
|
64 TVerdict Step0614_HP(); |
|
65 TVerdict Step0615_HP(); |
|
66 TVerdict Step0616_HP(); |
|
67 TVerdict Step0617_HP(); |
|
68 |
|
69 protected: |
|
70 CTestPositiveConversion(const TDesC& aTestName) : |
|
71 CTestStepConversion(aTestName) |
|
72 { iHeapSize = 500000; } |
|
73 virtual TVerdict DoTestStepL(); |
|
74 |
|
75 TInt EncodeImageWithMinParamsL(const TDesC& aFilename, TUid aImageTypeId); |
|
76 TInt EncodePpmImageParamsL(const TDesC& aFilename, TUid aImageTypeId, const TUid aPpmEncoderUid = KNullUid); |
|
77 }; |
|
78 |
|
79 #endif |