mpengine/tsrc/unittest_mpmpxisolatedcollectionhelper/src/unittest_mpmpxisolatedcollectionhelper.cpp
changeset 29 8192e5b5c935
parent 22 ecf06a08d4d9
child 43 0f32e550d9d8
--- a/mpengine/tsrc/unittest_mpmpxisolatedcollectionhelper/src/unittest_mpmpxisolatedcollectionhelper.cpp	Fri May 14 15:49:53 2010 +0300
+++ b/mpengine/tsrc/unittest_mpmpxisolatedcollectionhelper/src/unittest_mpmpxisolatedcollectionhelper.cpp	Thu May 27 12:49:57 2010 +0300
@@ -15,9 +15,6 @@
 *
 */
 
-#include <hbapplication.h>
-#include <hbmainwindow.h>
-
 #include <mpxmedia.h>
 #include <mpxcollectionplaylist.h>
 #include <mpxcollectionpath.h>
@@ -34,19 +31,19 @@
  */
 int main(int argc, char *argv[])
 {
-    HbApplication app(argc, argv);
-    HbMainWindow window;
-
     TestCMpMpxIsolatedCollectionHelper tv;
 
-    char *pass[3];
-    pass[0] = argv[0];
-    pass[1] = "-o";
-    pass[2] = "c:\\data\\unittest_mpmpxisolatedcollectionhelper.txt";
+    if ( argc > 1 ) {
+        return QTest::qExec( &tv, argc, argv);
+    }
+    else {
+        char *pass[3];
+        pass[0] = argv[0];
+        pass[1] = "-o";
+        pass[2] = "c:\\data\\unittest_mpmpxisolatedcollectionhelper.txt";
 
-    int res = QTest::qExec(&tv, 3, pass);
-
-    return res;
+        return QTest::qExec(&tv, 3, pass);
+    }
 }
 
 TestCMpMpxIsolatedCollectionHelper::TestCMpMpxIsolatedCollectionHelper()