|
1 // Copyright (c) 2007-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 // te_eteldialcallcontrol.h |
|
15 // This file contains class declarations of TestExecute test steps |
|
16 // which test that the RMobileCall::DialCallControl API can only |
|
17 // be called if the application has the correct SID and capabilities |
|
18 // to call it. |
|
19 // |
|
20 // |
|
21 |
|
22 /** |
|
23 @file |
|
24 */ |
|
25 |
|
26 #ifndef TE_ETELDIALCALLCONTROL_H_ |
|
27 #define TE_ETELDIALCALLCONTROL_H_ |
|
28 |
|
29 #include <etelmm.h> |
|
30 #include "TE_EtelMMTestStepBase.h" |
|
31 |
|
32 class CTestDialCallControlCorrectSIDCorrectCap : public CEtelMMTestStepBase |
|
33 { |
|
34 public: |
|
35 CTestDialCallControlCorrectSIDCorrectCap() ; |
|
36 ~CTestDialCallControlCorrectSIDCorrectCap(){} ; |
|
37 virtual enum TVerdict doTestStepL(); |
|
38 }; |
|
39 |
|
40 class CTestDialCallControlIncorrectSIDCorrectCap : public CEtelMMTestStepBase |
|
41 { |
|
42 public: |
|
43 CTestDialCallControlIncorrectSIDCorrectCap() ; |
|
44 ~CTestDialCallControlIncorrectSIDCorrectCap(){} ; |
|
45 virtual enum TVerdict doTestStepL(); |
|
46 }; |
|
47 |
|
48 class CTestDialCallControlCorrectSIDIncorrectCap : public CEtelMMTestStepBase |
|
49 { |
|
50 public: |
|
51 CTestDialCallControlCorrectSIDIncorrectCap() ; |
|
52 ~CTestDialCallControlCorrectSIDIncorrectCap(){} ; |
|
53 virtual enum TVerdict doTestStepL(); |
|
54 }; |
|
55 |
|
56 class CTestDialCallControlIncorrectSIDIncorrectCap : public CEtelMMTestStepBase |
|
57 { |
|
58 public: |
|
59 CTestDialCallControlIncorrectSIDIncorrectCap() ; |
|
60 ~CTestDialCallControlIncorrectSIDIncorrectCap(){} ; |
|
61 virtual enum TVerdict doTestStepL(); |
|
62 }; |
|
63 |
|
64 #endif //TE_ETELDIALCALLCONTROL_H_ |