|
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 // The TEFUnit header file which tests the AlternatingCall |
|
15 // functional unit of the Common TSY. |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef CCTSYALTERNATINGCALLFU_H |
|
20 #define CCTSYALTERNATINGCALLFU_H |
|
21 |
|
22 #include <test/tefunit.h> |
|
23 |
|
24 #include <etelmm.h> |
|
25 #include <etelmmcs.h> |
|
26 |
|
27 #include "cctsycomponenttestbase.h" |
|
28 |
|
29 class CCTsyAlternatingCallFU : public CCtsyComponentTestBase |
|
30 { |
|
31 public: |
|
32 // Create a suite of all the tests |
|
33 static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
34 |
|
35 public: |
|
36 // Individual test steps |
|
37 |
|
38 void TestSwitchAlternatingCall0001L(); |
|
39 void TestSwitchAlternatingCall0002L(); |
|
40 void TestSwitchAlternatingCall0003L(); |
|
41 void TestNotifyAlternatingCallSwitch0001L(); |
|
42 void TestNotifyAlternatingCallSwitch0002L(); |
|
43 void TestNotifyAlternatingCallSwitch0003L(); |
|
44 void TestGetAlternatingCallCaps0001L(); |
|
45 void TestGetAlternatingCallMode0001L(); |
|
46 void TestSetAlternatingCallMode0001L(); |
|
47 void TestNotifyAlternatingCallCapsChange0001L(); |
|
48 void TestNotifyAlternatingCallModeChange0001L(); |
|
49 |
|
50 |
|
51 private: |
|
52 |
|
53 TInt OpenNewCall(RLine& aLine, |
|
54 RMobileCall& aMobileCall, |
|
55 const TDesC& aLineName); |
|
56 |
|
57 }; // class CCTsyAlternatingCallFU |
|
58 |
|
59 #endif // CCTSYALTERNATINGCALLFU_H |
|
60 |