|
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 SubscriberInfo |
|
15 // functional unit of the Common TSY. |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef CCTSYSUBSCRIBERINFOFU_H |
|
20 #define CCTSYSUBSCRIBERINFOFU_H |
|
21 |
|
22 #include <test/tefunit.h> |
|
23 |
|
24 #include <etelmm.h> |
|
25 #include <etelmmcs.h> |
|
26 |
|
27 #include "cctsycomponenttestbase.h" |
|
28 |
|
29 class CCTsySubscriberInfoFU : 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 TestGetServiceTable0001L(); |
|
39 void TestGetServiceTable0001aL(); |
|
40 void TestGetServiceTable0001bL(); |
|
41 void TestGetServiceTable0001cL(); |
|
42 void TestGetServiceTable0002L(); |
|
43 void TestGetServiceTable0003L(); |
|
44 void TestGetServiceTable0004L(); |
|
45 void TestGetServiceTable0005L(); |
|
46 void TestGetSubscriberId0001L(); |
|
47 void TestGetSubscriberId0002L(); |
|
48 void TestGetSubscriberId0004L(); |
|
49 void TestGetIccAccessCaps0001L(); |
|
50 void TestGetCustomerServiceProfile0001L(); |
|
51 void TestGetCustomerServiceProfile0002L(); |
|
52 void TestGetCustomerServiceProfile0002bL(); |
|
53 void TestGetCustomerServiceProfile0003L(); |
|
54 void TestGetCustomerServiceProfile0004L(); |
|
55 void TestGetCustomerServiceProfile0005L(); |
|
56 void TestNotifyIccAccessCapsChange0001L(); |
|
57 void TestNotifyIccAccessCapsChange0002L(); |
|
58 void TestNotifyIccAccessCapsChange0004L(); |
|
59 void TestGetIccIdentity0001L(); |
|
60 |
|
61 |
|
62 private: |
|
63 |
|
64 void OpenPhone(); |
|
65 void InitAndCacheSimServiceTableL( |
|
66 const RMobilePhone::TMobilePhoneServiceTableV1* aSimServiceTable, |
|
67 const RMobilePhone::TMobilePhoneServiceTableV1* aUSimServiceTable, |
|
68 TInt aSimServiceTableError); |
|
69 |
|
70 }; // class CCTsySubscriberInfoFU |
|
71 |
|
72 #endif // CCTSYSUBSCRIBERINFOFU_H |
|
73 |