videocollection/videocollectionview/tsrc/testlistwidget/inc/testlistwidget.h
changeset 15 cf5481c2bc0b
child 17 69946d1824c4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videocollection/videocollectionview/tsrc/testlistwidget/inc/testlistwidget.h	Fri Apr 16 14:59:52 2010 +0300
@@ -0,0 +1,214 @@
+/**
+* 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:   tester for methods in VideoSortFilterProxyModel
+*
+*/
+
+#ifndef __TESTLISTWIDGET_H__
+#define __TESTLISTWIDGET_H__
+
+
+// INCLUDES
+#include <QtTest/QtTest>
+
+class VideoListWidget;
+class DummyDataModel;
+class HbAbstractViewItem;
+class HbView;
+class VideoSortFilterProxyModel;
+class VideoCollectionWrapper;
+class HbMainWindow;
+class ListWidgetTester;
+class VideoServices;
+class VideoListDataModel;
+class VideoCollectionUiLoader;
+
+class TestListWidget : public QObject
+{
+    Q_OBJECT
+
+public:
+
+    void setRowCount(int count, int type = 0, VideoListDataModel *model = 0);
+    
+    // test functions for the test framework
+private slots:
+
+    /**
+     * will be called automatically when test starts
+     *
+     */
+    void initTestCase();
+
+    /**
+     * will be called automatically before each testfunction is executed.
+     *
+     */
+    void init();
+
+    /**
+     * will be called automatically after every testfunction.
+     *
+     */
+    void cleanup();
+
+	
+	/**
+	 * verifies initialize
+	 */
+	void testInitialize();
+	
+	/**
+	 * verifies activate()
+	 */
+    void testActivate();
+    
+    /**
+     * verifies deactivate()
+     */
+    void testDeactivate();
+
+    /**
+     * verifies getLevel
+     */
+    void testGetLevel();
+    
+    /**
+     * verifies getModel
+     */
+    void testGetModel();
+    
+    /**
+     * verifies emitActivated
+     */
+    void testEmitActivated();
+    
+    /**
+     * verifies longPressGesture
+     */
+    void testLongPressGesture();
+    
+    /**
+     * verifies setContextMenu
+     */
+    void testSetContextMenu();
+    
+    /**
+     * verifies doDelayedsSlot
+     */
+    void testDoDelayedsSlot();
+    
+    /**
+     * verifies deleteItemSlot
+     */
+    void testDeleteItemSlot();
+    
+    /**
+     * verifies renameSlot
+     */
+    void testRenameSlot();
+    
+    /**
+     * verifies playItemSlot
+     */
+    void testPlayItemSlot();
+    
+    /**
+     * verifies playAllSlot
+     */
+    void testPlayAllSlot();
+    
+    /**
+     * verifies addToCollectionSlot
+     */
+    void testAddToCollectionSlot();
+
+    /**
+     * verifies removeFromCollectionSlot
+     */
+    void testRemoveFromCollectionSlot();
+    
+    /**    
+     * verifies removeCollectionSlot
+     */
+    void testRemoveCollectionSlot();
+    
+    /**
+     * verifies openDetailsSlot()
+     */
+    void testOpenDetailsSlot();
+    
+    /**
+     * verifies back()
+     */
+    void testBack();
+    
+    /**
+     * verifies scrollingStartedSlot
+     */
+    void testScrollingStartedSlot();
+    
+    /**
+     * verifies scrollingEndedSlot();
+     */
+    void testScrollingEndedSlot();
+
+    /**
+     * verifies scrollPositionChangedSlot();
+     */
+    void testScrollPositionChangedSlot();
+    
+    /**
+     * verifies scrollPositionTimerSlot()
+     */
+    void testScrollPositionTimerSlot();
+
+signals:
+    
+    /**
+     * test signal
+     */
+    void testSignal();
+
+    /**
+     * another test signal
+     */
+    void testSignal(const QPointF&);
+    
+private:
+    /**
+     * object under test, ListWidgetTester is inherited from VideoListWidget
+     */
+    ListWidgetTester* mTestWidget;
+
+    /**
+     * dummy view
+     */
+    HbView *mTempView;
+    
+    /**
+     * dummy main wnd
+     */
+    HbMainWindow *mDummyMainWnd;
+    
+    /**
+     * stub -uiloader
+     */
+    VideoCollectionUiLoader *mTestUiLoader;
+};
+
+
+#endif  // __TESTLISTWIDGET_H__
+
+// End of file