|
1 |
|
2 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 // All rights reserved. |
|
4 // This component and the accompanying materials are made available |
|
5 // under the terms of "Eclipse Public License v1.0" |
|
6 // which accompanies this distribution, and is available |
|
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 // |
|
9 // Initial Contributors: |
|
10 // Nokia Corporation - initial contribution. |
|
11 // |
|
12 // Contributors: |
|
13 // |
|
14 // Description: |
|
15 // Test of Commsdat Wifi Security tables |
|
16 // |
|
17 // |
|
18 |
|
19 #if (!defined COMMSDAT_WIFI_TESTS_H) |
|
20 #define COMMSDAT_WIFI_TESTS_H |
|
21 #include <e32base.h> |
|
22 #include <test/testexecutestepbase.h> |
|
23 #include "Te_commsdatSuiteStepBase.h" |
|
24 #include <metadatabase.h> |
|
25 #include <commsdat.h> |
|
26 #include <commsdattypesv1_1.h> |
|
27 |
|
28 using namespace CommsDat; |
|
29 using namespace Meta; |
|
30 |
|
31 |
|
32 _LIT(KCommsdat197Step,"commsdat197Step"); |
|
33 class CCommsdat197Step : public CTe_commsdatSuiteStepBase |
|
34 { |
|
35 public: |
|
36 CCommsdat197Step(); |
|
37 ~CCommsdat197Step(){}; |
|
38 virtual TVerdict doTestStepL(); |
|
39 private: |
|
40 CMDBSession* iCDSession; |
|
41 }; |
|
42 |
|
43 _LIT(KCommsdat198Step,"commsdat198Step"); |
|
44 class CCommsdat198Step : public CTe_commsdatSuiteStepBase |
|
45 { |
|
46 public: |
|
47 CCommsdat198Step(); |
|
48 ~CCommsdat198Step(){}; |
|
49 virtual TVerdict doTestStepL(); |
|
50 private: |
|
51 CMDBSession* iCDSession; |
|
52 }; |
|
53 |
|
54 _LIT(KCommsdat199Step,"commsdat199Step"); |
|
55 class CCommsdat199Step : public CTe_commsdatSuiteStepBase |
|
56 { |
|
57 public: |
|
58 CCommsdat199Step(); |
|
59 ~CCommsdat199Step(){}; |
|
60 virtual TVerdict doTestStepL(); |
|
61 private: |
|
62 CMDBSession* iCDSession; |
|
63 }; |
|
64 |
|
65 _LIT(KCommsdat200Step,"commsdat200Step"); |
|
66 class CCommsdat200Step : public CTe_commsdatSuiteStepBase |
|
67 { |
|
68 public: |
|
69 CCommsdat200Step(); |
|
70 ~CCommsdat200Step(){}; |
|
71 virtual TVerdict doTestStepL(); |
|
72 private: |
|
73 CMDBSession* iCDSession; |
|
74 }; |
|
75 |
|
76 #endif //COMMSDATWIFITESTS.H |
|
77 |