phonebookengines/cntlistmodel/tsrc/ut_mobcntmodel/inc/ut_mobcntmodel.h
changeset 46 efe85016a067
parent 40 b46a585f6909
child 47 7cbcb2896f0e
--- a/phonebookengines/cntlistmodel/tsrc/ut_mobcntmodel/inc/ut_mobcntmodel.h	Fri Jun 11 13:29:23 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,82 +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:
-*
-*/
-
-#include <QtTest/QtTest>
-#include <QObject>
-#include <qtcontacts.h>
-
-QTM_BEGIN_NAMESPACE
-class QContactManager;
-QTM_END_NAMESPACE
-
-QTM_USE_NAMESPACE
-
-class CntListModel;
-class ModelListener;
-
-class TestMobCntModel : public QObject
-{
-    Q_OBJECT
-
-private:
-    void contactReady(int start, int end);
-
-private slots:
-	void initTestCase();
-	void create();
-	
-	void data();
-	void rowCount();
-	
-	void contact();
-	void indexOfContact();
-	void contactManager();
-	void setFilterAndSortOrder();
-	void myCard();
-
-	void rowId();
-	void dataForDisplayRole();
-
-    void handleAdded();
-    void handleChanged();
-    void handleRemoved();
-	void handleMyCardChanged();
-	
-	void cleanupTestCase();
-	
-private:
-    QContactManager *mManager;
-    CntListModel    *mCntModel;
-    ModelListener   *mModelListener;
-    bool             mDataReady;
-
-friend class ModelListener;
-};
-
-class ModelListener : public QObject
-{
-    Q_OBJECT
-
-public:
-    ModelListener(TestMobCntModel* parent);
-
-private slots:
-    void onDataChanged(QModelIndex start, QModelIndex end);
-
-private:
-    TestMobCntModel* mParent;
-};