|
1 // Copyright (c) 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 __ELEMENTSTEP_H__) |
|
17 #define __ELEMENTSTEP_H__ |
|
18 |
|
19 #ifdef SYMBIAN_OLD_EXPORT_LOCATION |
|
20 #include <testexecutestepbase.h> |
|
21 #else |
|
22 #include <test/testexecutestepbase.h> |
|
23 #endif |
|
24 |
|
25 |
|
26 #include "ElementServer.h" |
|
27 |
|
28 class CElementStep1 : public CTestStep |
|
29 { |
|
30 public: |
|
31 CElementStep1(); |
|
32 ~CElementStep1(); |
|
33 virtual TVerdict doTestStepPreambleL(); |
|
34 virtual TVerdict doTestStepPostambleL(); |
|
35 virtual TVerdict doTestStepL(); |
|
36 private: |
|
37 }; |
|
38 |
|
39 class CElementStep2 : public CTestStep |
|
40 { |
|
41 public: |
|
42 CElementStep2(CElementServer& aParent); |
|
43 ~CElementStep2(); |
|
44 virtual TVerdict doTestStepPreambleL(); |
|
45 virtual TVerdict doTestStepPostambleL(); |
|
46 virtual TVerdict doTestStepL(); |
|
47 private: |
|
48 CElementServer& iParent; |
|
49 }; |
|
50 |
|
51 class CElementStep3 : public CTestStep |
|
52 { |
|
53 public: |
|
54 CElementStep3(CElementServer& aParent); |
|
55 ~CElementStep3(); |
|
56 virtual TVerdict doTestStepPreambleL(); |
|
57 virtual TVerdict doTestStepPostambleL(); |
|
58 virtual TVerdict doTestStepL(); |
|
59 private: |
|
60 CElementServer& iParent; |
|
61 }; |
|
62 |
|
63 |
|
64 _LIT(KElementStep1,"ElementStep1"); |
|
65 _LIT(KElementStep2,"ElementStep2"); |
|
66 _LIT(KElementStep3,"ElementStep3"); |
|
67 |
|
68 |
|
69 #endif // __ELEMENTSTEP_H__ |