|
1 // Copyright (c) 2008-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 /** |
|
17 @file |
|
18 @test |
|
19 @internalComponent - Internal Symbian test code |
|
20 */ |
|
21 |
|
22 #ifndef TEXTENDEDBITMAPLEGACY_H |
|
23 #define TEXTENDEDBITMAPLEGACY_H |
|
24 |
|
25 #include "tfbsbase.h" |
|
26 |
|
27 //The main test class. Add test methods here. |
|
28 class CTExtendedBitmapLegacy : public CTFbsBase |
|
29 { |
|
30 public: |
|
31 CTExtendedBitmapLegacy(CTestStep* aStep); |
|
32 ~CTExtendedBitmapLegacy(); |
|
33 protected: |
|
34 // From CTFbsBase |
|
35 virtual void RunFbsTestL(TInt aCurTestCase); |
|
36 |
|
37 private: |
|
38 void TestDuplicateL(); |
|
39 void TestAccessDeniedL(); |
|
40 void TestNotSupportedL(); |
|
41 void TestTwipsL(); |
|
42 void TestGettersL(); |
|
43 void TestGetScanLineL(); |
|
44 void TestGetPixelL(); |
|
45 void TestApisThatCallResetL(); |
|
46 void TestApisThatLeaveL(); |
|
47 void TestNotSupportedNoReturnL(); |
|
48 }; |
|
49 |
|
50 |
|
51 class CTExtendedBitmapLegacyStep : public CTGraphicsStep |
|
52 { |
|
53 public: |
|
54 CTExtendedBitmapLegacyStep(); |
|
55 protected: |
|
56 //from CTGraphicsStep |
|
57 virtual CTGraphicsBase* CreateTestL(); |
|
58 virtual void TestSetupL(); |
|
59 virtual void TestClose(); |
|
60 }; |
|
61 |
|
62 _LIT(KTExtendedBitmapLegacyStep,"TExtendedBitmapLegacy"); |
|
63 |
|
64 #endif // TEXTENDEDBITMAPLEGACY_H |