os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTestContext.inl
First public contribution.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The context for the unit tests upon the CBackupNotifier class methods.
15 // Additionally supply a stub for the CBackupNotifier observation class that
16 // logs the resume and suspend calls
20 #include "BackupNotifierTransitions.h"
22 // ______________________________________________________________________________
24 inline CNotificationStub::CNotificationStub(CDataLogger& aDataLogger)
25 : CBase(), iDataLogger(aDataLogger)
30 inline CNotificationStub::~CNotificationStub()
35 inline TInt CNotificationStub::Suspend()
37 _LIT(KBackupNotifierObserverSuspendMethod, "MBackupNotifierObserver::Suspend called");
38 iDataLogger.LogInformation(KBackupNotifierObserverSuspendMethod);
42 inline TInt CNotificationStub::Resume()
44 _LIT(KBackupNotifierObserverResumeMethod, "MBackupNotifierObserver::Resume called");
45 iDataLogger.LogInformation(KBackupNotifierObserverResumeMethod);
49 // ______________________________________________________________________________
51 inline CBackupNotifier_UnitTestContext::CBackupNotifier_UnitTestContext(CDataLogger& aDataLogger,
52 MStateAccessor& aStateAccessor,
53 MTransitionObserver& aObserver)
54 : CUnitTestContext(aDataLogger, aStateAccessor, aObserver)
59 inline CBackupNotifier_UnitTestContext::~CBackupNotifier_UnitTestContext()
61 delete iBackupNotifier;