|
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 #if (!defined __TESTIMPEXVCARD_SERVER_H__) |
|
21 #define __TESTIMPEXVCARD_SERVER_H__ |
|
22 #include <test/testexecuteserverbase.h> |
|
23 |
|
24 // Literal constants for INI file field-names |
|
25 _LIT(KIniFieldName, "fieldname"); |
|
26 _LIT(KIniFieldVal, "fieldval"); |
|
27 _LIT(KIniFlagvalue, "flag"); |
|
28 _LIT(KIniYear, "year"); |
|
29 _LIT(KIniMonth, "month"); |
|
30 _LIT(KIniDay, "day"); |
|
31 _LIT(KFlagExport, "flagexport"); |
|
32 _LIT(KExpectedData, "expecteddata"); |
|
33 |
|
34 // Field Name |
|
35 _LIT(KAssistance, "Assistant"); |
|
36 _LIT(KAssistanceTel, "Assistant-Tel"); |
|
37 _LIT(KAnniversary, "Anniversary"); |
|
38 _LIT(KSpouse, "Spouse"); |
|
39 _LIT(KChildren, "Children"); |
|
40 _LIT(KClass, "Class"); |
|
41 _LIT(KDepartment, "Department"); |
|
42 _LIT(KCompanyName, "CompanyName"); |
|
43 |
|
44 // all fields value |
|
45 _LIT(KIniFieldAsstVal, "asstfieldval"); |
|
46 _LIT(KIniFieldAsstTelVal, "assttelfieldval"); |
|
47 _LIT(KIniFieldSpouseVal, "spousefieldval"); |
|
48 _LIT(KIniFieldChildVel, "childrenfieldval"); |
|
49 _LIT(KIniFieldClassVal, "classfieldval"); |
|
50 _LIT(KIniFieldDeptVal, "deptfieldval"); |
|
51 _LIT(KIniFieldCompanyVal, "companyfieldval"); |
|
52 |
|
53 |
|
54 class CTestImpExvCardSuite : public CTestServer |
|
55 { |
|
56 public: |
|
57 static CTestImpExvCardSuite* NewL(); |
|
58 // Base class pure virtual override |
|
59 virtual CTestStep* CreateTestStep(const TDesC& aStepName); |
|
60 |
|
61 private: |
|
62 }; |
|
63 |
|
64 #endif |