|
1 // Copyright (c) 2004-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 // |
|
15 |
|
16 #if (!defined __TESTSUITEIMAGEDISPLAY_H__) |
|
17 #define __TESTSUITEIMAGEDISPLAY_H__ |
|
18 |
|
19 #include <testframework.h> |
|
20 |
|
21 |
|
22 static const TInt KTesPluginUidValue=0x101F7C4E; |
|
23 static const TUid KTesPluginUid={KTesPluginUidValue}; |
|
24 |
|
25 /** |
|
26 * |
|
27 * CTestSuiteImageDisplay is the test suite |
|
28 * |
|
29 * @lib "TSU_ICL_ImageTransform.lib" |
|
30 * |
|
31 */ |
|
32 class CTestSuiteImageDisplay : public CTestSuite |
|
33 { |
|
34 public: |
|
35 void InitialiseL(); |
|
36 ~CTestSuiteImageDisplay(); |
|
37 void AddTestStepL(CTestStepImageDisplay* ptrTestStep ); |
|
38 //TPtrC GetVersion(); |
|
39 virtual TPtrC GetVersion() const; |
|
40 void DefaultPath(TFileName& aName); |
|
41 |
|
42 private: |
|
43 void InitSystemPath(); |
|
44 TBool iFBSSession; |
|
45 TFileName iDefaultPath; |
|
46 }; |
|
47 |
|
48 |
|
49 /** |
|
50 @panic EBadArgument is raised if a precondition on an argument is violated |
|
51 */ |
|
52 |
|
53 enum TS_ImageTransformPanic |
|
54 { |
|
55 EBadArgument, |
|
56 }; |
|
57 |
|
58 /** |
|
59 |
|
60 The function panic raises a panic from within the TS_ImageTransform library |
|
61 @param The argument is a member of the enumeration TS_ImageTransformPanic |
|
62 |
|
63 @lib TSU_ICL_ImageTransform.lib |
|
64 @panic The panics raised by this function are: |
|
65 EBadArgument |
|
66 |
|
67 */ |
|
68 |
|
69 |
|
70 void Panic( TS_ImageTransformPanic aError); |
|
71 |
|
72 #endif // __TESTSUITEIMAGEDISPLAY_H__ |