controlpanel/tsrc/unit/ut_cpapi/src/main.cpp
changeset 56 d9e9413f30c9
parent 49 277e3324e775
child 59 4868a89ec1e3
--- a/controlpanel/tsrc/unit/ut_cpapi/src/main.cpp	Wed Aug 18 10:03:24 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-/*
-* 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:  
-*       test application for qt control panel public apis.
-*/
-#include <hbapplication.h>
-#include <QTest>
-#include "ut_cpapi.h"
-int main(int argc, char *argv[])
-{
-    HbApplication app(argc, argv);
-    int res = 0;
-    //char *pass[3];
-    //pass[0] = argv[0];
-    //pass[1] = "-o";
-    
-    // log folder: \epoc32\winscw\c\data
-    
-    app.setApplicationName("TestCpAPI");
-    //pass[2] = "c:\\data\\u.txt";
-    TestCpAPI *tcUtilities = new TestCpAPI();
-    res |= QTest::qExec(tcUtilities);
-    delete tcUtilities;
-    tcUtilities = NULL;
-    return res;
-}