web_pub/favourites_engine_api/tsrc/inc/FavouritesDbTestObserver.h
changeset 8 7c90e6132015
child 36 0ed94ceaa377
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web_pub/favourites_engine_api/tsrc/inc/FavouritesDbTestObserver.h	Fri May 08 08:25:06 2009 +0300
@@ -0,0 +1,96 @@
+/*
+* Copyright (c) 2000 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:  Declaration of class CFavouritesDbTestObserver.
+*
+*/
+
+
+#ifndef FAVOURITES_DB_TEST_OBSERVER_H
+#define FAVOURITES_DB_TEST_OBSERVER_H
+
+//  INCLUDES
+
+#include <e32base.h>
+#include <FavouritesDbObserver.h>
+#include "FavouritesEngineTest.h"
+
+// FORWARD DECLARATION
+
+class CActiveFavouritesDbNotifier;
+
+// CLASS DECLARATION
+
+/**
+* Favourites Engine test observer.
+*/
+class CFavouritesDbTestObserver: public CActive, public MFavouritesDbObserver
+    {
+    public:     // Constructors and destructor
+        
+        /**
+        * Constructor.
+        * @param aTester Tester object.
+        */
+        CFavouritesDbTestObserver( CFavouritesEngineTest& aTester );
+
+        /**
+        * Destructor.
+        */
+        virtual ~CFavouritesDbTestObserver();
+
+    protected:  // from CActive
+
+        /**
+        * Run a step of the observer test.
+        */
+        void RunL();
+
+        /**
+        * Cancel protocol implementation.
+        */
+        void DoCancel();
+
+    public:     // from MFavouritesDbObserver
+
+        /**
+        * Act accordingly to database events.
+        * @param aEvent Database event.
+        */
+        void HandleFavouritesDbEventL( RDbNotifier::TEvent aEvent );
+
+    public:     // new methods
+
+        /**
+        * Start the test.
+        */
+        void Start();
+
+        /**
+        * Continue the test.
+        */
+        void Next();
+
+    private:    // data
+
+        CFavouritesEngineTest* iTester;           ///< Tester; not owned.
+        CActiveFavouritesDbNotifier* iNotifier; ///< Database notifier.
+        TInt iStep;                             ///< Test step.
+        TInt iLastEvent;                        ///< Last event occurred.
+        TInt iEventCount;                       ///< Count of events.
+
+    };
+
+#endif
+            
+// End of File