|
1 // Copyright (c) 2006-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 // Definition of all test objects required to verify capability check on |
|
15 // ETel3rdParty supplementary functionality part. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalTechnology |
|
22 */ |
|
23 |
|
24 #ifndef __SUPPLEMENTARYFUNCTSTEPS_H__ |
|
25 #define __SUPPLEMENTARYFUNCTSTEPS_H__ |
|
26 |
|
27 #include <test/testexecutestepbase.h> |
|
28 #include "te_etelisvcapsstepbase.h" |
|
29 |
|
30 // |
|
31 class CGetCallForwardingStatusTestStep : public CTe_CapsTestSuiteStepBase |
|
32 { |
|
33 public: |
|
34 CGetCallForwardingStatusTestStep(); |
|
35 |
|
36 private: |
|
37 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
38 virtual TInt CancelRequestL(); |
|
39 |
|
40 private: |
|
41 CTelephony::TCallForwardingSupplServicesV1 iCallForwarding; |
|
42 CTelephony::TCallForwardingSupplServicesV1Pckg iCallForwardingPckg; |
|
43 }; |
|
44 |
|
45 _LIT(KCapsTestGetCallForwardingStr,"GetCallForwardingTestStep"); |
|
46 |
|
47 // |
|
48 class CGetCallBarringStatusTestStep : public CTe_CapsTestSuiteStepBase |
|
49 { |
|
50 public: |
|
51 CGetCallBarringStatusTestStep(); |
|
52 |
|
53 private: |
|
54 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
55 virtual TInt CancelRequestL(); |
|
56 |
|
57 private: |
|
58 CTelephony::TCallBarringSupplServicesV1 iCallBarring; |
|
59 CTelephony::TCallBarringSupplServicesV1Pckg iCallBarringPckg; |
|
60 }; |
|
61 |
|
62 _LIT(KCapsTestGetCallBarringStr,"GetCallBarringTestStep"); |
|
63 |
|
64 // |
|
65 class CGetCallWaitingStatusTestStep : public CTe_CapsTestSuiteStepBase |
|
66 { |
|
67 public: |
|
68 CGetCallWaitingStatusTestStep(); |
|
69 |
|
70 private: |
|
71 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
72 virtual TInt CancelRequestL(); |
|
73 |
|
74 private: |
|
75 CTelephony::TCallWaitingSupplServicesV1 iCallWaiting; |
|
76 CTelephony::TCallWaitingSupplServicesV1Pckg iCallWaitingPckg; |
|
77 }; |
|
78 |
|
79 _LIT(KCapsTestGetCallWaitingStr,"GetCallWaitingTestStep"); |
|
80 |
|
81 // |
|
82 class CGetIdentityServiceTestStep : public CTe_CapsTestSuiteStepBase |
|
83 { |
|
84 public: |
|
85 CGetIdentityServiceTestStep(); |
|
86 |
|
87 private: |
|
88 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
89 virtual TInt CancelRequestL(); |
|
90 |
|
91 private: |
|
92 CTelephony::TIdentityServiceV1 iIdentityService; |
|
93 CTelephony::TIdentityServiceV1Pckg iIdentityServicePckg; |
|
94 }; |
|
95 |
|
96 _LIT(KCapsTestGetIdentityServiceStr,"GetIdentityServiceTestStep"); |
|
97 |
|
98 // |
|
99 #endif // __SUPPLEMENTARYFUNCTSTEPS_H__ |