|
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 PhoneIdentity |
|
15 // functional unit of the Common TSY. |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef CCTSYPHONEIDENTITYFU_H |
|
20 #define CCTSYPHONEIDENTITYFU_H |
|
21 |
|
22 #include <test/tefunit.h> |
|
23 |
|
24 #include <etelmm.h> |
|
25 #include <etelmmcs.h> |
|
26 |
|
27 #include "cctsycomponenttestbase.h" |
|
28 |
|
29 class CCTsyPhoneIdentityFU : public CCtsyComponentTestBase |
|
30 { |
|
31 public: |
|
32 // Create a suite of all the tests |
|
33 static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
34 CCTsyPhoneIdentityFU(); |
|
35 |
|
36 public: |
|
37 // Individual test steps |
|
38 |
|
39 void TestGetPhoneId0001L(); |
|
40 // Test split into 0001b-j to allow for replacing deviceattributes.ini using TEF script in between. |
|
41 void TestGetPhoneId0001bL(); |
|
42 void TestGetPhoneId0001cL(); |
|
43 void TestGetPhoneId0001dL(); |
|
44 void TestGetPhoneId0001eL(); |
|
45 void TestGetPhoneId0001fL(); |
|
46 void TestGetPhoneId0001gL(); |
|
47 void TestGetPhoneId0001hL(); |
|
48 void TestGetPhoneId0001iL(); |
|
49 void TestGetPhoneId0001jL(); |
|
50 void TestGetPhoneId0002L(); |
|
51 void TestGetPhoneId0004L(); |
|
52 void TestGetPhoneId0004bL(); |
|
53 void TestGetPhoneId0004cL(); |
|
54 void TestGetPhoneId0005L(); |
|
55 void TestGetIdentityCaps0001L(); |
|
56 void TestGetIdentityServiceStatus0001L(); |
|
57 void TestGetIdentityServiceStatus0002L(); |
|
58 void TestGetIdentityServiceStatus0004L(); |
|
59 void TestGetIdentityServiceStatus0005L(); |
|
60 void TestSetIdentityServiceStatus0001L(); |
|
61 void TestNotifyIdentityServiceStatus0001L(); |
|
62 void TestNotifyIdentitySuppressionRejected0001L(); |
|
63 |
|
64 |
|
65 private: |
|
66 TInt DeletePSProperties(); |
|
67 |
|
68 |
|
69 }; // class CCTsyPhoneIdentityFU |
|
70 |
|
71 #endif // CCTSYPHONEIDENTITYFU_H |
|
72 |