phonebookui/cntlistmodel/tsrc/ut_cntlistmodel/src/main.cpp
author hgs
Fri, 15 Oct 2010 12:24:46 +0300
changeset 81 640d30f4fb64
parent 66 phonebookengines/cntlistmodel/tsrc/ut_cntlistmodel/src/main.cpp@554fe4dbbb59
permissions -rw-r--r--
201041

/*
* Copyright (c) 2009 Nokia Corporation 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:
*
*/

#include "testrunner.h"

#include "ut_cntlistmodel.h"
#include "ut_cntcache.h"
#include "ut_cntpresenceinfoprovider.h"
#include "ut_cntdefaultinfoprovider.h"
#include "ut_cntdisplaytextformatter.h"

#include <QtTest/QtTest>

int main(int argc, char *argv[]) 
{
    bool promptOnExit(true);
    for (int i=0; i<argc; i++) {
        if (QString(argv[i]) == "-noprompt")
            promptOnExit = false;
    }
    printf("Running tests...\n");
            
    QApplication app(argc, argv);
    
    QTranslator translator;
    QString lang = QLocale::system().name();
    QString path = "z:/resource/qt/translations/";
    translator.load(path + "contacts_" + lang);
    app.installTranslator(&translator);

    TestRunner testRunner("ut_cntlistmodel");
    
    TestCntDisplayTextFormatter ut_CntDisplayTextFormatter;
    testRunner.runTests( ut_CntDisplayTextFormatter );
    
    TestCntListModel ut_CntListModel;
    testRunner.runTests(ut_CntListModel);
    
    TestCntCache ut_CntCache;
    testRunner.runTests(ut_CntCache);
    
    TestCntPresenceInfoProvider ut_CntPresenceInfoProvider;
    testRunner.runTests(ut_CntPresenceInfoProvider);
    
    TestCntDefaultInfoProvider ut_CntDefaultInfoProvider;
    testRunner.runTests(ut_CntDefaultInfoProvider);

    testRunner.printResults();

    if (promptOnExit) {
        printf("Press any key...\n");
        getchar(); 
    }

    return 0;   
}