phonebookengines/cntlistmodel/tsrc/ut_cntlistmodel/src/ut_cntcache.cpp
changeset 66 554fe4dbbb59
parent 61 d30183af6ca6
--- a/phonebookengines/cntlistmodel/tsrc/ut_cntlistmodel/src/ut_cntcache.cpp	Mon Aug 23 16:06:28 2010 +0300
+++ b/phonebookengines/cntlistmodel/tsrc/ut_cntlistmodel/src/ut_cntcache.cpp	Fri Sep 03 14:32:33 2010 +0300
@@ -21,6 +21,7 @@
 
 void TestCntCache::initTestCase()
 {
+    // get contact manager
     mContactManager = new QContactManager("symbian");
 
     // start with a clean database
@@ -65,15 +66,11 @@
     QVERIFY(cache->mContactManager != NULL);
     QVERIFY(worker->mContactManager != NULL);
     QVERIFY(worker->mThumbnailManager != NULL);
-    QVERIFY(!worker->mStarted);
-    QVERIFY(!worker->mProcessingJobs);
-    QVERIFY(!worker->mPostponeJobs);
-    QVERIFY(worker->mDataProviders.count() >= 1);
+    QVERIFY(worker->mInfoProviders.count() >= 1);
 
     // test deletion
     cache->onShutdown();
-    QVERIFY(cache == NULL);
-    QVERIFY(worker == NULL);
+    QVERIFY(CntCache::mInstance == NULL);
 }
 
 /*
@@ -158,7 +155,7 @@
     }
     QVERIFY(cacheItemCount == 2*2); // two images, both used by two contacts
 
-    delete cache;
+    cache->onShutdown();
 }
 
 /*