os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/PolicyObserverStub.cpp
Update contrib.
1 // Copyright (c) 1997-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.
16 #include "PolicyObserverStub.h"
17 #include "RegistryDataTransitions.h"
19 TPolicyObserverStub::TPolicyObserverStub(CRegistryData_UnitTestContext& aUTContext) :
20 iUTContext(aUTContext)
25 void TPolicyObserverStub::DllDeletedL(CUnloadPolicy*& /*aUnloadPolicy*/)
27 _LIT(KDllDeleted, "TPolicyObserverStub::DllDeletedL called");
28 iUTContext.DataLogger().LogInformation(KDllDeleted);
31 CUnloadPolicy* TPolicyObserverStub::DllAdded(const CEComEntry& /*aDllInfo*/)
33 _LIT(KDllAdded, "TPolicyObserverStub::DllAdded called");
34 iUTContext.DataLogger().LogInformation(KDllAdded);
38 void TPolicyObserverStub::UpdatePolicyIndexL()
40 _LIT(KUpdatePolicy, "TPolicyObserverStub::UpdatePolicyIndexL called");
41 iUTContext.DataLogger().LogInformation(KUpdatePolicy);