|
1 // Copyright (c) 2006-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 // ctestimapsynmanager.h |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef CTESTSYNCFOLDERTREE_H |
|
19 #define CTESTSYNCFOLDERTREE_H |
|
20 |
|
21 #include "ctestimapsyncmanager.h" |
|
22 |
|
23 // Forward Declarations |
|
24 class CActiveWaiter; |
|
25 |
|
26 /** |
|
27 @internalTechnology |
|
28 @prototype |
|
29 */ |
|
30 class CTestSyncFolderTree : public CTestImapSyncManager |
|
31 // Note that all test suites must begin with "CTest" |
|
32 // WARNING: Despite being a C class, CActiveTestFixture is NOT derrived from CBase |
|
33 // ... so don't expect your data members to be zero'ed |
|
34 { |
|
35 public: |
|
36 // Constructor & Destructor (explicitly virtual because CTestFixture is NOT derrived from CBase) |
|
37 CTestSyncFolderTree(/*MImapTestEventHandler* aOwner*/); |
|
38 virtual ~CTestSyncFolderTree(); |
|
39 void TestInboxNameL(); |
|
40 void TestsSyncFolderL(); |
|
41 void TestsDeleteL(); |
|
42 void TestsMessageSyncLimitL(); |
|
43 void TestsNewMessageSyncL(); |
|
44 void TestsMessageSyncNewLimitL(); |
|
45 void TestRenameFolderL(); |
|
46 static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
47 private: |
|
48 CActiveWaiter* iActiveWaiter; |
|
49 }; |
|
50 |
|
51 #endif // CTESTSYNCFOLDERTREE_H |