summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/cntplsql/src/dllmain.cpp
blob: f1fad24d32fa32598f1271a0f938d45400d52a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

//  EXTERNAL INCLUDES
#include <digia/eunit/ceunittestsuite.h>
//  INTERNAL INCLUDES
#include "t_cpcskeymap.h"
#include "t_cqwertykeymap.h"
#include "t_ckoreankeymap.h"
#include "t_cpplpredictivesearchtable.h"
#include "t_cqwertypredictivesearchtable.h"
#include "t_cpredictivesearchsettingstable.h"

/**
 * Test suite factory function.
 */
EXPORT_C MEUnitTest* CreateTestSuiteL()
    {
    CEUnitTestSuite* rootSuite = CEUnitTestSuite::NewLC(_L("cntplsql unit tests"));

    rootSuite->AddL(UT_CPcsKeyMap::NewLC());
    CleanupStack::Pop(); // UT_CPcsKeyMap instance

	rootSuite->AddL(UT_CQwertyKeyMap::NewLC());
    CleanupStack::Pop(); // UT_CQwertyKeyMap instance
    
    rootSuite->AddL(UT_CKoreanKeyMap::NewLC());
    CleanupStack::Pop(); // UT_CKoreanKeyMap instance
 
    rootSuite->AddL(UT_CPplPredictiveSearchTable::NewLC());
    CleanupStack::Pop(); // UT_CPplPredictiveSearchTable instance
    
    rootSuite->AddL(UT_CQwertyPredictiveSearchTable::NewLC());
    CleanupStack::Pop(); // UT_CQwertyPredictiveSearchTable instance
    
    rootSuite->AddL(UT_CPredictiveSearchSettingsTable::NewLC());
    CleanupStack::Pop(); // UT_CPredictiveSearchSettingsTable instance

    CleanupStack::Pop(rootSuite);
    return rootSuite;
    }