sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The definition of the transition classes for the CRegistryData tests. sl@0: // sl@0: // sl@0: sl@0: #ifndef __REGISTRYDATATRANSITIONS_H__ sl@0: #define __REGISTRYDATATRANSITIONS_H__ sl@0: sl@0: #include "RegistryData.h" sl@0: sl@0: #include sl@0: #include "LeakTestTransition.h" sl@0: #include "RegistryDataStateAccessor.h" sl@0: sl@0: #define CTransitionType CLeakTestTransition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Provide all the CRegistryData specific sl@0: parameters and behaviour on the CRegistryData sl@0: test class for a transition. sl@0: */ sl@0: class CRegistryData_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver, sl@0: RFs& aFs) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest's Transitions. sl@0: @param aStateAccessor WhiteBox state access to the CRegistryData class under test. sl@0: @param aFs A reference to a connected file server instance. sl@0: @pre None. sl@0: @post CRegistryData_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CRegistryData_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver, sl@0: RFs& aFs); sl@0: sl@0: /** sl@0: @fn ~CRegistryData_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CRegistryData_UnitTestContext is fully constructed. sl@0: @post CRegistryData_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CRegistryData_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: CRegistryData* iRegistryData; sl@0: /** A reference to an connected file server instance. */ sl@0: RFs& iFs; sl@0: /** The current drive unit identifier */ sl@0: TDriveUnit iDriveUnit; sl@0: /** The pointer to the DllData entry */ sl@0: CRegistryData::CDllData* iDllData; sl@0: /** The updated entry which we use in call to UpdateDllEntry */ sl@0: CRegistryData::CDllData* iNewDllData; sl@0: /** sl@0: A reference to the implementation entry in the registry : sl@0: */ sl@0: const CImplementationInformation* iImplementationRef; sl@0: /** sl@0: A reference to the implementation entry in the registry : sl@0: */ sl@0: const CImplementationInformation* iSecondImplementationRef; sl@0: /** sl@0: A list of returned UIDs from the list methods sl@0: */ sl@0: RImplInfoArray* iUidList; sl@0: /** UID for an implementation of an interface */ sl@0: TUid iImplementationUid; sl@0: /** UID to identify a particular interface */ sl@0: TUid iInterfaceUid; sl@0: /** UID to identify a specific dll */ sl@0: TUid iDllUid; sl@0: /** The directory entry data for a dll */ sl@0: TEntry iDllEntry; sl@0: /** The update flag */ sl@0: TBool iUpdate; sl@0: /** Input file stream for registry load testing */ sl@0: RFileReadStream iReadStream; sl@0: /** Output file streams for registry persistence testing */ sl@0: RFileWriteStream iWriteStream; sl@0: /** A methods return status code */ sl@0: TInt iMethodCompletionStatus; sl@0: /** The drive index returned by IsRegistered... so we know which drive to update on */ sl@0: TInt iFoundDriveIndex; sl@0: /** Used by SetEnabledState() - ETrue to enable an implementation, EFalse to disable it. */ sl@0: TBool iEnabledState; sl@0: }; // CRegistryData_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::NewL method. sl@0: */ sl@0: class CRegistryData_NewL_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_NewL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_NewL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_NewL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::NewL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_NewL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::Dtor method. sl@0: */ sl@0: class CRegistryData_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_Dtor_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_Dtor_Transition is fully constructed. sl@0: @post No change in the CRegistryData_Dtor_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::Dtor post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_Dtor_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::AddDllDataL method. sl@0: */ sl@0: class CRegistryData_AddDllDataL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_AddDllDataL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::AddDllDataL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::AddDllDataL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_AddDllDataL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_AddDllDataL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::AddDllDataL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_AddDllDataL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_AddDllDataL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::GetImplementationInformationL method. sl@0: */ sl@0: class CRegistryData_GetImplementationInformationL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_GetImplementationInformationL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::GetImplementationInformationL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::GetImplementationInformationL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_GetImplementationInformationL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_GetImplementationInformationL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::GetImplementationInformationL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_GetImplementationInformationL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_GetImplementationInformationL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::IsRegisteredWithDateL method. sl@0: */ sl@0: class CRegistryData_IsRegisteredWithDateL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_IsRegisteredWithDateL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::IsRegisteredWithDateL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::IsRegisteredWithDateL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_IsRegisteredWithDateL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_IsRegisteredWithDateL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::IsRegisteredWithDateL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_IsRegisteredWithDateL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_IsRegisteredWithDateL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::ListImplementationsL method. sl@0: */ sl@0: class CRegistryData_ListImplementationsL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_ListImplementationsL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::ListImplementationsL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::ListImplementationsL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_ListImplementationsL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_ListImplementationsL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::ListImplementationsL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_ListImplementationsL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_ListImplementationsL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::SetEnabledState method. sl@0: */ sl@0: class CRegistryData_SetEnabledState_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_SetEnabledState_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::SetEnabledState method for the sl@0: test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_SetEnabledState_Transition is fully constructed. sl@0: @post No change in the CRegistryData_SetEnabledState_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::SetEnabledState post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_MarkDisabled_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_MarkDisabled_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::PersistNowL method. sl@0: */ sl@0: class CRegistryData_PersistNowL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_PersistNowL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::PersistNowL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::PersistNowL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_PersistNowL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_PersistNowL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::PersistNowL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_PersistNowL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_PersistNowL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::TemporaryUninstallL method. sl@0: */ sl@0: class CRegistryData_TemporaryUninstallL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_TemporaryUninstallL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::TemporaryUninstall method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::TemporaryUninstall) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_TemporaryUninstall_Transition is fully constructed. sl@0: @post No change in the CRegistryData_TemporaryUninstall_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::TemporaryUninstall post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_TemporaryUninstall_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_TemporaryUninstall_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::UndoTemporaryUninstallL method. sl@0: */ sl@0: class CRegistryData_UndoTemporaryUninstallL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::UndoTemporaryUninstallL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::UndoTemporaryUninstallL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_UndoTemporaryUninstallL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::UndoTemporaryUninstallL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_UndoTemporaryUninstallL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_UndoTemporaryUninstallL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::UpdateDllDataL method. sl@0: */ sl@0: class CRegistryData_UpdateDllDataL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_UpdateDllDataL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::UpdateDllDataL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::UpdateDllDataL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_UpdateDllDataL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_UpdateDllDataL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::UpdateDllDataL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_UpdateDllDataL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_UpdateDllDataL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::BuildIndexesL method. sl@0: */ sl@0: class CRegistryData_BuildIndexesL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_BuildIndexesL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::BuildIndexesL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::BuildIndexesL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_BuildIndexesL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_BuildIndexesL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::BuildIndexesL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_BuildIndexesL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_BuildIndexesL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::IndexedFind method. sl@0: */ sl@0: class CRegistryData_IndexedFind_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_IndexedFind_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::IndexedFind method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::IndexedFind) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_IndexedFind_Transition is fully constructed. sl@0: @post No change in the CRegistryData_IndexedFind_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::IndexedFind post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_IndexedFind_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_IndexedFind_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::RestoreL method. sl@0: */ sl@0: class CRegistryData_RestoreL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_RestoreL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::RestoreL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::RestoreL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_RestoreL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_RestoreL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::RestoreL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_RestoreL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_RestoreL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::StoreL method. sl@0: */ sl@0: class CRegistryData_StoreL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_StoreL_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::StoreL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::StoreL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_StoreL_Transition is fully constructed. sl@0: @post No change in the CRegistryData_StoreL_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::StoreL post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_StoreL_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_StoreL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::MatchOnUid method. sl@0: */ sl@0: class CRegistryData_MatchOnUid_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_MatchOnUid_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::MatchOnUid method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::MatchOnUid) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_MatchOnUid_Transition is fully constructed. sl@0: @post No change in the CRegistryData_MatchOnUid_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::MatchOnUid post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_MatchOnUid_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_MatchOnUid_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the CRegistryData::DiscoveriesBeginning method. sl@0: */ sl@0: class CRegistryData_DiscoveriesBeginning_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRegistryData_DiscoveriesBeginning_Transition is fully constructed. sl@0: */ sl@0: CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CRegistryData::DiscoveriesBeginning method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CRegistryData::DiscoveriesBeginning) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CRegistryData_DiscoveriesBeginning_Transition is fully constructed. sl@0: @post No change in the CRegistryData_DiscoveriesBeginning_Transition apart sl@0: from iRegistryData, which may have changed state. sl@0: (@see CRegistryData::DiscoveriesBeginning post-condition) for iRegistryData's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CRegistryData_UnitTestContext sl@0: @pre iUTContext is a valid CRegistryData_UnitTestContext. sl@0: @post No change in the CRegistryData_DiscoveriesBeginning_Transition sl@0: */ sl@0: inline CRegistryData_UnitTestContext& Context() const; sl@0: }; // CRegistryData_DiscoveriesBeginning_Transition sl@0: sl@0: #include "RegistryDataTransitions.inl" sl@0: sl@0: #endif // __REGISTRYDATATRANSITIONS_H__