phonebookengines/cntmaptileservice/tsrc/ut_cntmaptileservice/src/main.cpp
changeset 61 d30183af6ca6
parent 56 d508aa856878
child 66 554fe4dbbb59
--- a/phonebookengines/cntmaptileservice/tsrc/ut_cntmaptileservice/src/main.cpp	Wed Aug 11 09:06:35 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-/*
-* Copyright (c) 2010 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 <QtTest/QtTest>
-
-#include "testrunner.h"
-#include "ut_cntmaptileservice.h"
-
-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_maptilefetcher");
-    
-    T_MaptileServiceTest maptileService;
-    testRunner.runTests( maptileService );
-    
-    testRunner.printResults();
-
-    if (promptOnExit) {
-       // printf("Press any key...\n");
-        getchar(); 
-    }
-    return 0;   
-}
-