phonebookui/cnthistorymodel/tsrc/mt_cnthistorymodel/mt_cnthistorymodel.h
changeset 31 2a11b5b00470
parent 27 de1630741fbe
--- a/phonebookui/cnthistorymodel/tsrc/mt_cnthistorymodel/mt_cnthistorymodel.h	Mon May 03 12:24:20 2010 +0300
+++ b/phonebookui/cnthistorymodel/tsrc/mt_cnthistorymodel/mt_cnthistorymodel.h	Fri May 14 15:42:23 2010 +0300
@@ -16,17 +16,34 @@
 */
 
 #include <QObject>
+#include <qtcontacts.h>
+
+QTM_USE_NAMESPACE
+
+class CntHistoryModel;
 
 class TestCntHistoryModel : public QObject
 {
     Q_OBJECT
 
 private slots:
-	void initTestCase();
-	void cleanupTestCase();
+    void init();
+    void cleanup();
 	
+    void testLogsInsertions();
+    void testLogsRemovals();
+    void testLogsUpdates();
+    void testMsgInsertions();
+    void testMsgRemovals();
+    void testMsgUpdates();
+    void testReadLogEvent();
+    void testReadMsgEvent();
 	void testRoles();
 	void testSorting();
 	void testClear();
 	void testMarkSeen();
+	
+private:
+	QContactManager* cm;
+	CntHistoryModel* model;
 };