equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2004-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 * INICOPY.H |
|
16 * Ini file preparation |
|
17 * |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 /** |
|
24 @file |
|
25 @internalComponent |
|
26 */ |
|
27 |
|
28 //Test Framework Header |
|
29 #include <test/testexecutestepbase.h> |
|
30 |
|
31 |
|
32 _LIT(KSrcPath, "z:\\testdata\\configs\\agentdialog.ini"); |
|
33 |
|
34 _LIT(KDestPath, "c:\\private\\101F7989\\esock\\agentdialog.ini"); |
|
35 |
|
36 /////////////////////////////////////////////// |
|
37 // Test Pre Copy agentdialog.ini |
|
38 class CTestPreCopyIni : public CTestStep |
|
39 { |
|
40 public: |
|
41 CTestPreCopyIni(); |
|
42 virtual ~CTestPreCopyIni(); |
|
43 |
|
44 virtual enum TVerdict doTestStepL( void ); |
|
45 void copyFileL (const TDesC& anOld,const TDesC& aNew); |
|
46 |
|
47 private: |
|
48 }; |
|
49 |
|
50 _LIT(KPreCopyDialog,"PreCopyDialog"); |
|
51 |