|
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 BroadcastMessaging |
|
15 // functional unit of the Common TSY. |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef CCTSYBROADCASTMESSAGINGFU_H |
|
20 #define CCTSYBROADCASTMESSAGINGFU_H |
|
21 |
|
22 #include <test/tefunit.h> |
|
23 |
|
24 #include <etelmm.h> |
|
25 #include <etelmmcs.h> |
|
26 |
|
27 #include "cctsycomponenttestbase.h" |
|
28 |
|
29 class CCTsyBroadcastMessagingFU : 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 TestStoreBroadcastIdListL0001L(); |
|
39 void TestStoreBroadcastIdListL0002L(); |
|
40 void TestStoreBroadcastIdListL0003L(); |
|
41 void TestStoreBroadcastIdListL0004L(); |
|
42 void TestStoreBroadcastIdListL0005L(); |
|
43 void TestStart0001L(); |
|
44 void TestStart0002L(); |
|
45 void TestStart0004L(); |
|
46 void TestStart0005L(); |
|
47 void TestReceiveMessage0001L(); |
|
48 void TestReceiveMessage0002L(); |
|
49 void TestReceiveMessage0003L(); |
|
50 void TestReceiveMessage0004L(); |
|
51 void TestReceiveMessage0005L(); |
|
52 void TestGetFilterSetting0001L(); |
|
53 void TestSetFilterSetting0001L(); |
|
54 void TestSetFilterSetting0002L(); |
|
55 void TestSetFilterSetting0003L(); |
|
56 void TestSetFilterSetting0004L(); |
|
57 void TestSetFilterSetting0005L(); |
|
58 void TestGetLanguageFilter0001L(); |
|
59 void TestSetLanguageFilter0001L(); |
|
60 void TestNotifyFilterSettingChange0001L(); |
|
61 void TestNotifyFilterSettingChange0002L(); |
|
62 void TestNotifyFilterSettingChange0003L(); |
|
63 void TestNotifyFilterSettingChange0004L(); |
|
64 void TestNotifyLanguageFilterChange0001L(); |
|
65 void TestNotifyBroadcastIdListChange0001L(); |
|
66 void TestGetCaps0001L(); |
|
67 void TestGetCaps0003L(); |
|
68 |
|
69 |
|
70 private: |
|
71 |
|
72 void FillInBroadcastIdListL(CMobilePhoneBroadcastIdList& aList); |
|
73 |
|
74 }; // class CCTsyBroadcastMessagingFU |
|
75 |
|
76 #endif // CCTSYBROADCASTMESSAGINGFU_H |
|
77 |