equal
deleted
inserted
replaced
|
1 // Copyright (c) 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 |
|
18 /** |
|
19 @file |
|
20 @internalComponent - Internal Symbian test code |
|
21 */ |
|
22 |
|
23 #ifndef __T_RECUPGRADE_H |
|
24 #define __T_RECUPGRADE_H |
|
25 |
|
26 #include <test/testexecutestepbase.h> |
|
27 #include "appfwk_test_utils.h" |
|
28 |
|
29 _LIT(KT_RecUpgradeStep, "T_RecUpgrade"); |
|
30 |
|
31 class CT_RecUpgradeStep : public CTestStep |
|
32 { |
|
33 public: |
|
34 CT_RecUpgradeStep(); |
|
35 ~CT_RecUpgradeStep(); |
|
36 |
|
37 //from CTestStep |
|
38 TVerdict doTestStepPreambleL(); |
|
39 TVerdict doTestStepL(); |
|
40 TVerdict doTestStepPostambleL(); |
|
41 |
|
42 private: |
|
43 void TestUpgradeRecognizerL(RApaLsSession& aApparcServer); |
|
44 void TestUpgradeRecognizer2L(RApaLsSession& aApparcServer); |
|
45 TBool DoRecognizeL(RApaLsSession& aApparcServer, const TDataType& aDataType); |
|
46 void CopyRecognizerFileL(); |
|
47 static TInt DeleteFileL(const TDesC &aFileName, RSmlTestUtils &fs); |
|
48 }; |
|
49 |
|
50 #endif |