phonebookengines/contactsmodel/tsrc/Integration/TestImpExvCard/inc/TestContactOperations.h
equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2006-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 * Performs delete operation on the database |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 #ifndef __TESTCONTACTOPERATIONS_H__ |
|
23 #define __TESTCONTACTOPERATIONS_H__ |
|
24 |
|
25 // System includes |
|
26 #include <cntfilt.h> |
|
27 #include <e32test.h> |
|
28 #include <s32file.h> |
|
29 #include <e32std.h> |
|
30 #include <f32file.h> |
|
31 #include <cntdb.h> |
|
32 #include <vcard.h> |
|
33 #include <cntitem.h> |
|
34 #include <cntfldst.h> |
|
35 #include <test/testexecutestepbase.h> |
|
36 |
|
37 // User includes |
|
38 #include "cntvcardutils.h" |
|
39 #include "TestImpExvCardSuiteServer.h" |
|
40 |
|
41 class CTestContactOperations : public CTestStep |
|
42 { |
|
43 public: |
|
44 CTestContactOperations(); |
|
45 ~CTestContactOperations(); |
|
46 virtual TVerdict doTestStepPreambleL(); |
|
47 virtual TVerdict doTestStepL(); |
|
48 virtual TVerdict doTestStepPostambleL(); |
|
49 |
|
50 private: |
|
51 void DeleteContactsL(void); |
|
52 |
|
53 private: |
|
54 CActiveScheduler* iScheduler; |
|
55 |
|
56 }; |
|
57 |
|
58 _LIT(KTestContactOperations, "TestContactOperations"); |
|
59 _LIT(KNumberOfCont, "NumberOfContacts"); |
|
60 |
|
61 #endif |