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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __TESTCALINDEXFILE_CREATE_DB_STEP_H__ |
|
21 #define __TESTCALINDEXFILE_CREATE_DB_STEP_H__ |
|
22 |
|
23 #include <test/testexecutestepbase.h> |
|
24 #include "TestCalIndexFileStepBase.h" |
|
25 |
|
26 #include <calinstanceview.h> |
|
27 #include <calprogresscallback.h> |
|
28 #include <calentry.h> |
|
29 #include <calalarm.h> |
|
30 |
|
31 |
|
32 class CTestCalIndexFileCreateDbStep: public CTestCalIndexFileStepBase |
|
33 { |
|
34 public: |
|
35 CTestCalIndexFileCreateDbStep(); |
|
36 ~CTestCalIndexFileCreateDbStep(); |
|
37 virtual TVerdict doTestStepL(); |
|
38 virtual TVerdict doTestStepPostambleL(); |
|
39 |
|
40 // over-ride from CTestCalIndexFileStepBase |
|
41 TBool ValidateDbContentsL(); |
|
42 void OpenAgendaL(); |
|
43 void GetEntryInfoFromConfigL(RPointerArray<CConfigTestEntryInfo>& aEntriesInfo, TInt& aNumEntries, TBool aPerformCrudOps); |
|
44 }; |
|
45 |
|
46 _LIT(KTestCalIndexFileCreateDbStep,"TestCalIndexFileCreateDbStep"); |
|
47 |
|
48 #endif //__TESTCALINDEXFILE_CREATE_DB_STEP_H__ |