|
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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file loadcpmStep.h |
|
22 */ |
|
23 #if (!defined __UNLOADCPM_STEP_H__) |
|
24 #define __UNLOADCPM_STEP_H__ |
|
25 #include <test/testexecutestepbase.h> |
|
26 #include "Te_ConfiguratorSuiteStepBase.h" |
|
27 #include <comms-infras/c32startcli.h> |
|
28 #include <e32property.h> |
|
29 |
|
30 //NET-CONFIGURATOR-I-00013-HP |
|
31 //UnLoading CPM which has been loaded prevesouly |
|
32 class CUnloadCpm : public CTe_ConfiguratorSuiteStepBase |
|
33 { |
|
34 public: |
|
35 CUnloadCpm(); |
|
36 ~CUnloadCpm(); |
|
37 virtual TVerdict doTestStepL(); |
|
38 }; |
|
39 _LIT(KUnloadCpm,"UnloadCpm"); |
|
40 |
|
41 //NET-CONFIGURATOR-I-0014-HP |
|
42 //UnLoading CPM which has not been already loaded |
|
43 class CUnloadCpmPreNotLoaded : public CTe_ConfiguratorSuiteStepBase |
|
44 { |
|
45 public: |
|
46 CUnloadCpmPreNotLoaded(); |
|
47 ~CUnloadCpmPreNotLoaded(); |
|
48 virtual TVerdict doTestStepL(); |
|
49 }; |
|
50 _LIT(KUnloadCpmPreNotLoaded,"UnloadCpmPreNotLoaded"); |
|
51 |
|
52 //NET-CONFIGURATOR-I-0015-HP |
|
53 //Loading and unload different combination of cpm |
|
54 class CLoadUnloadDiffCombination: public CTe_ConfiguratorSuiteStepBase |
|
55 { |
|
56 public: |
|
57 CLoadUnloadDiffCombination(); |
|
58 ~CLoadUnloadDiffCombination(); |
|
59 virtual TVerdict doTestStepL(); |
|
60 }; |
|
61 _LIT(KLoadUnloadDiffCombination,"LoadUnloadDiffCombination"); |
|
62 |
|
63 // NET-CONFIGURATOR-I-0016-HP |
|
64 //Cancelling the Loading CPM before and after loading |
|
65 class CCancelLoadCpm : public CTe_ConfiguratorSuiteStepBase |
|
66 { |
|
67 public: |
|
68 CCancelLoadCpm(); |
|
69 ~CCancelLoadCpm(); |
|
70 virtual TVerdict doTestStepL(); |
|
71 }; |
|
72 _LIT(KCancelLoadCpm,"CancelLoadCpm"); |
|
73 |
|
74 //NET-CONFIGURATOR-I-0017-HP |
|
75 //Cancelling the UnLoading CPM to be implemented |
|
76 class CCancelUnLoadCpm : public CTe_ConfiguratorSuiteStepBase |
|
77 { |
|
78 public: |
|
79 CCancelUnLoadCpm(); |
|
80 ~CCancelUnLoadCpm(); |
|
81 virtual TVerdict doTestStepL(); |
|
82 }; |
|
83 _LIT(KCancelUnLoadCpm,"CancelUnLoadCpm"); |
|
84 |
|
85 #endif |
|
86 |