videoplayerapp/videoplayerengine/tsrc/testvideoservices/inc/testvideoservices.h
changeset 15 cf5481c2bc0b
child 44 518105d52e45
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoplayerapp/videoplayerengine/tsrc/testvideoservices/inc/testvideoservices.h	Fri Apr 16 14:59:52 2010 +0300
@@ -0,0 +1,102 @@
+/*
+* 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:  Videoplayerengine test class declaration.
+*
+*/
+
+// TODO: at the moment we are not able to get access to all private methods
+//       to the class under test. We need to declare some own framework in order
+//       to declare testclasses into friends of classes under test etc.
+//
+//      missing test functions:
+//      - how to setup construction to fail for testing purposes
+
+
+#ifndef __TESTVIDEOSERVICES_H__
+#define __TESTVIDEOSERVICES_H__
+
+
+// INCLUDES
+#include <QtTest/QtTest>
+
+class VideoServices;
+class QVideoPlayerEngine;
+
+class TestVideoServices : public QObject
+	{
+
+    Q_OBJECT
+
+public: // Constructor / destructor
+
+    /**
+     * Contructor.
+     *
+     */
+	TestVideoServices();
+
+    /**
+     * Destructor.
+     *
+     */
+    virtual ~TestVideoServices();
+
+private slots:
+
+    void init();
+    void cleanup();
+
+    void testCreateDelete();
+    
+    void testCreateDeleteEngine();
+    
+    void testCurrentService();
+
+#if 0
+    void testInitialize();
+    void testInitializeService();
+
+    void testMultipleInitialize();
+    void testMultipleInitializeService();
+
+    void testHandleCommandPreInit();
+    void testHandleCommandPostInit();
+    void testHandleCommandPreAndPostInit();
+
+    void testHandleCommandPluginFail();
+    void testHandleCommandPluginFail1();
+    void testHandleCommandPluginFail2();
+
+    void testPlayMedia();
+    void testSetEmbedded();
+#endif
+    // called after last test case executed
+    void cleanupTestCase();
+
+signals:
+
+	void aboutToQuit();
+
+private:
+
+	VideoServices*       mTestObject;
+	QVideoPlayerEngine*  mEngine;
+};
+
+#endif  // __TESTVIDEOSERVICES_H__
+
+// End of file
+
+
+