|
1 // Copyright (c) 2005-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 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalComponent - Internal Symbian test code |
|
19 */ |
|
20 |
|
21 |
|
22 #ifndef __T_INTEGRITYREBOOTSUPPORT_STEP_H__ |
|
23 #define __T_INTEGRITYREBOOTSUPPORT_STEP_H__ |
|
24 |
|
25 #include "t_abstractnonnativeappsstep.h" |
|
26 |
|
27 _LIT(KT_IntegritySupportReboot1Step,"T_IntegritySupportReboot1"); |
|
28 |
|
29 class CT_IntegritySupportReboot1TestStep : public CT_AbstractNonNativeAppsTestStep |
|
30 { |
|
31 public: |
|
32 CT_IntegritySupportReboot1TestStep(); |
|
33 ~CT_IntegritySupportReboot1TestStep(); |
|
34 virtual TVerdict doTestStepPreambleL(); |
|
35 virtual TVerdict doTestStepPostambleL(); |
|
36 virtual TVerdict doTestStepL(); |
|
37 |
|
38 private: |
|
39 TInt RunTestCasesL(); |
|
40 void TestSetupL(); |
|
41 }; |
|
42 |
|
43 _LIT(KT_IntegritySupportReboot2Step,"T_IntegritySupportReboot2"); |
|
44 |
|
45 class CT_IntegritySupportReboot2TestStep : public CT_AbstractNonNativeAppsTestStep |
|
46 { |
|
47 public: |
|
48 CT_IntegritySupportReboot2TestStep(); |
|
49 ~CT_IntegritySupportReboot2TestStep(); |
|
50 virtual TVerdict doTestStepPreambleL(); |
|
51 virtual TVerdict doTestStepPostambleL(); |
|
52 virtual TVerdict doTestStepL(); |
|
53 |
|
54 private: |
|
55 TInt RunTestCasesL(); |
|
56 void TestClosingSessionL(); |
|
57 void TestAppsAreIgnoredL(); |
|
58 void TestUpdatesL(); |
|
59 void TestRollbackL(); |
|
60 }; |
|
61 |
|
62 #endif |