phonebookengines/mobcntmodel/tsrc/ut_mobcntmodel/src/main.cpp
changeset 24 0ba2181d7c28
child 37 fd64c38c277d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookengines/mobcntmodel/tsrc/ut_mobcntmodel/src/main.cpp	Fri Mar 19 09:27:18 2010 +0200
@@ -0,0 +1,52 @@
+/*
+* 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_mobcnticonmanager.h"
+#include "ut_mobcntmodel.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);
+    
+    TestRunner testRunner("ut_mobcntmodel");
+    
+    TestMobCntIconManager ut_MobCntIconManager;
+    testRunner.runTests(ut_MobCntIconManager);
+    
+    TestMobCntModel ut_MobCntModel;
+    testRunner.runTests(ut_MobCntModel);
+
+    testRunner.printResults();
+
+    if (promptOnExit) {
+        printf("Press any key...\n");
+        getchar(); 
+    }
+    return 0;   
+}
+