|
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 line functionality part. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalTechnology |
|
22 */ |
|
23 |
|
24 #ifndef __LINEFUNCTSTEPS_H__ |
|
25 #define __LINEFUNCTSTEPS_H__ |
|
26 |
|
27 #include <test/testexecutestepbase.h> |
|
28 #include "te_etelisvcapsstepbase.h" |
|
29 |
|
30 |
|
31 // |
|
32 class CGetLineStatusTestStep : public CTe_CapsTestSuiteStepBase |
|
33 { |
|
34 public: |
|
35 CGetLineStatusTestStep(); |
|
36 |
|
37 private: |
|
38 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
39 virtual TInt CancelRequestL(); |
|
40 |
|
41 private: |
|
42 CTelephony::TCallStatusV1 iCallStatus; |
|
43 CTelephony::TCallStatusV1Pckg iCallStatusPckg; |
|
44 }; |
|
45 |
|
46 _LIT(KCapsTestGetLineStatusStr,"GetLineStatusTestStep"); |
|
47 |
|
48 // |
|
49 class CGetCallInfoTestStep : public CTe_CapsTestSuiteStepBase |
|
50 { |
|
51 public: |
|
52 CGetCallInfoTestStep(); |
|
53 |
|
54 private: |
|
55 virtual TInt IssueRequestL(TRequestStatus& aStatus); |
|
56 virtual TInt CancelRequestL(); |
|
57 |
|
58 private: |
|
59 CTelephony::TCallInfoV1 iCallInfo; |
|
60 CTelephony::TCallInfoV1Pckg iCallInfoPckg; |
|
61 CTelephony::TRemotePartyInfoV1 iRCallInfo; |
|
62 CTelephony::TRemotePartyInfoV1Pckg iRCallInfoPckg; |
|
63 CTelephony::TCallSelectionV1 iCallSelection; |
|
64 CTelephony::TCallSelectionV1Pckg iCallSelectionPckg; |
|
65 }; |
|
66 |
|
67 _LIT(KCapsTestGetCallInfoStr,"GetCallInfoTestStep"); |
|
68 |
|
69 // |
|
70 |
|
71 #endif // __LINEFUNCTSTEPS_H__ |