os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTransitions.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definition of the transition classes for the CRegistryData tests.
    15 // 
    16 //
    17 
    18 #ifndef __REGISTRYDATATRANSITIONS_H__
    19 #define __REGISTRYDATATRANSITIONS_H__
    20 
    21 #include "RegistryData.h"
    22 
    23 #include <test_bed/datalogger.h>
    24 #include "LeakTestTransition.h"
    25 #include "RegistryDataStateAccessor.h"
    26 
    27 #define CTransitionType CLeakTestTransition
    28 
    29 // ______________________________________________________________________________
    30 //
    31 /**
    32 	@internalComponent
    33 	Comments : Provide all the CRegistryData specific
    34 	parameters and behaviour on the CRegistryData
    35 	test class for a transition.
    36  */
    37 class CRegistryData_UnitTestContext : public CUnitTestContext
    38 	{
    39 public:
    40 	/**
    41 		@fn				CRegistryData_UnitTestContext(CDataLogger& aDataLogger,
    42 														MStateAccessor& aStateAccessor,
    43 														MTransitionObserver& aObserver,
    44 														RFs& aFs)
    45 		Intended Usage	: Default constructor.
    46 		Error Condition	: None. 
    47 		@since			7.0
    48 		@param			aDataLogger The output logging object.
    49 		@param			aObserver The observer of this UnitTest's Transitions.
    50 		@param			aStateAccessor WhiteBox state access to the CRegistryData class under test.
    51 		@param			aFs A reference to a connected file server instance.
    52 		@pre 			None.
    53 		@post			CRegistryData_UnitTestContext is fully constructed, and initialised.
    54 	*/
    55 	inline CRegistryData_UnitTestContext(CDataLogger& aDataLogger,
    56 										MStateAccessor& aStateAccessor,
    57 										MTransitionObserver& aObserver,
    58 										RFs& aFs);
    59 
    60 	/**
    61 		@fn				~CRegistryData_UnitTestContext()
    62 		Intended Usage	: Default Destructor
    63 		@since			7.0
    64 		@pre 			CRegistryData_UnitTestContext is fully constructed.
    65 		@post			CRegistryData_UnitTestContext is fully destroyed
    66 		*/
    67 		virtual inline ~CRegistryData_UnitTestContext();
    68 
    69 	/** The instance of the class under test */
    70 	CRegistryData* iRegistryData;
    71 	/** A reference to an connected file server instance. */
    72 	RFs&						iFs;
    73 	/** The current drive unit identifier */
    74 	TDriveUnit					iDriveUnit;
    75 	/** The pointer to the DllData entry */
    76 	CRegistryData::CDllData*	iDllData;
    77 	/** The updated entry which we use in call to UpdateDllEntry */
    78 	CRegistryData::CDllData*	iNewDllData;
    79 	/** 
    80 		A reference to the implementation entry in the registry : 
    81 	*/
    82 	const CImplementationInformation* iImplementationRef;
    83 	/** 
    84 		A reference to the implementation entry in the registry : 
    85 	*/
    86 	const CImplementationInformation* iSecondImplementationRef;
    87 	/** 
    88 		A list of returned UIDs from the list methods
    89 	 */
    90 	RImplInfoArray* iUidList;
    91 	/** UID for an implementation of an interface */
    92 	TUid	iImplementationUid;
    93 	/** UID to identify a particular interface */
    94 	TUid	iInterfaceUid;
    95 	/** UID to identify a specific dll */
    96 	TUid	iDllUid;
    97 	/** The directory entry data for a dll */
    98 	TEntry	iDllEntry;
    99 	/** The update flag */
   100 	TBool	iUpdate;
   101 	/** Input file stream for registry load testing */
   102 	RFileReadStream  iReadStream;
   103 	/** Output file streams for registry persistence testing */
   104 	RFileWriteStream iWriteStream;
   105 	/** A methods return status code */
   106 	TInt iMethodCompletionStatus;
   107 	/** The drive index returned by IsRegistered... so we know which drive to update on */
   108 	TInt iFoundDriveIndex;
   109 	/** Used by SetEnabledState() - ETrue to enable an implementation, EFalse to disable it. */
   110 	TBool iEnabledState;
   111 	}; // CRegistryData_UnitTestContext
   112 
   113 // ______________________________________________________________________________
   114 //
   115 /**
   116 	@internalComponent
   117 	Comments : Transition test of the CRegistryData::NewL method.
   118  */
   119 class CRegistryData_NewL_Transition : public CTransition
   120 	{
   121 public:
   122 	/**
   123 		@fn				CRegistryData_NewL_Transition(CUnitTestContext& aUTContext,
   124 																	TTransitionValidator& aValidator)
   125 		Intended Usage	: Standard c'tor method.
   126 		Error Condition	: None.
   127 		@since			7.0
   128 		@param			aUTContext The context this transition is operating in.
   129 		@param			aValidator Used for checking the pre & post conditions of the test object.
   130 		@pre 			None.
   131 		@post			CRegistryData_NewL_Transition is fully constructed.
   132 	*/
   133 	CRegistryData_NewL_Transition(CUnitTestContext& aUTContext,
   134 													TTransitionValidator& aValidator);
   135 	/**
   136 		@fn				TransitMethodL()
   137 		Intended Usage	: To execute the CRegistryData::NewL method for the test harness.
   138 		Error Condition	: Leaves with an error code.
   139 		@leave  		KErrNoMemory, (@see CRegistryData::NewL)
   140 		@since			7.0
   141 		@return			None
   142 		@pre 			CRegistryData_NewL_Transition is fully constructed.
   143 		@post			No change in the CRegistryData_NewL_Transition apart
   144 						from iRegistryData, which may have changed state.
   145 						(@see CRegistryData::NewL post-condition) for iRegistryData's new state.
   146 	*/
   147 	inline void TransitMethodL();
   148 
   149 	/**
   150 		@fn				Context() const
   151 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   152 		Error Condition	: None.
   153 		@since			7.0
   154 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   155 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   156 		@post			No change in the CRegistryData_NewL_Transition
   157 	*/
   158 	inline CRegistryData_UnitTestContext& Context() const;
   159 	};	// CRegistryData_NewL_Transition
   160 
   161 // ______________________________________________________________________________
   162 //
   163 /**
   164 	@internalComponent
   165 	Comments : Transition test of the CRegistryData::Dtor method.
   166  */
   167 class CRegistryData_Dtor_Transition : public CTransition
   168 	{
   169 public:
   170 	/**
   171 		@fn				CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext,
   172 																	TTransitionValidator& aValidator)
   173 		Intended Usage	: Standard c'tor method.
   174 		Error Condition	: None.
   175 		@since			7.0
   176 		@param			aUTContext The context this transition is operating in.
   177 		@param			aValidator Used for checking the pre & post conditions of the test object.
   178 		@pre 			None.
   179 		@post			CRegistryData_Dtor_Transition is fully constructed.
   180 	*/
   181 	CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext,
   182 													TTransitionValidator& aValidator);
   183 	/**
   184 		@fn				TransitMethodL()
   185 		Intended Usage	: To execute the CRegistryData::Dtor method for the test harness.
   186 		Error Condition	: Leaves with an error code.
   187 		@leave  		KErrNoMemory, (@see CRegistryData::Dtor)
   188 		@since			7.0
   189 		@return			None
   190 		@pre 			CRegistryData_Dtor_Transition is fully constructed.
   191 		@post			No change in the CRegistryData_Dtor_Transition apart
   192 						from iRegistryData, which may have changed state.
   193 						(@see CRegistryData::Dtor post-condition) for iRegistryData's new state.
   194 	*/
   195 	inline void TransitMethodL();
   196 
   197 	/**
   198 		@fn				Context() const
   199 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   200 		Error Condition	: None.
   201 		@since			7.0
   202 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   203 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   204 		@post			No change in the CRegistryData_Dtor_Transition
   205 	*/
   206 	inline CRegistryData_UnitTestContext& Context() const;
   207 	};	// CRegistryData_Dtor_Transition
   208 
   209 // ______________________________________________________________________________
   210 //
   211 /**
   212 	@internalComponent
   213 	Comments : Transition test of the CRegistryData::AddDllDataL method.
   214  */
   215 class CRegistryData_AddDllDataL_Transition : public CTransitionType
   216 	{
   217 public:
   218 	/**
   219 		@fn				CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext,
   220 																	TTransitionValidator& aValidator)
   221 		Intended Usage	: Standard c'tor method.
   222 		Error Condition	: None.
   223 		@since			7.0
   224 		@param			aUTContext The context this transition is operating in.
   225 		@param			aValidator Used for checking the pre & post conditions of the test object.
   226 		@pre 			None.
   227 		@post			CRegistryData_AddDllDataL_Transition is fully constructed.
   228 	*/
   229 	CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext,
   230 													TTransitionValidator& aValidator);
   231 	/**
   232 		@fn				TransitMethodL()
   233 		Intended Usage	: To execute the CRegistryData::AddDllDataL method for the test harness.
   234 		Error Condition	: Leaves with an error code.
   235 		@leave  		KErrNoMemory, (@see CRegistryData::AddDllDataL)
   236 		@since			7.0
   237 		@return			None
   238 		@pre 			CRegistryData_AddDllDataL_Transition is fully constructed.
   239 		@post			No change in the CRegistryData_AddDllDataL_Transition apart
   240 						from iRegistryData, which may have changed state.
   241 						(@see CRegistryData::AddDllDataL post-condition) for iRegistryData's new state.
   242 	*/
   243 	inline void TransitMethodL();
   244 
   245 	/**
   246 		@fn				Context() const
   247 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   248 		Error Condition	: None.
   249 		@since			7.0
   250 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   251 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   252 		@post			No change in the CRegistryData_AddDllDataL_Transition
   253 	*/
   254 	inline CRegistryData_UnitTestContext& Context() const;
   255 	};	// CRegistryData_AddDllDataL_Transition
   256 
   257 // ______________________________________________________________________________
   258 //
   259 /**
   260 	@internalComponent
   261 	Comments : Transition test of the CRegistryData::GetImplementationInformationL method.
   262  */
   263 class CRegistryData_GetImplementationInformationL_Transition : public CTransitionType
   264 	{
   265 public:
   266 	/**
   267 		@fn				CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext,
   268 																	TTransitionValidator& aValidator)
   269 		Intended Usage	: Standard c'tor method.
   270 		Error Condition	: None.
   271 		@since			7.0
   272 		@param			aUTContext The context this transition is operating in.
   273 		@param			aValidator Used for checking the pre & post conditions of the test object.
   274 		@pre 			None.
   275 		@post			CRegistryData_GetImplementationInformationL_Transition is fully constructed.
   276 	*/
   277 	CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext,
   278 													TTransitionValidator& aValidator);
   279 	/**
   280 		@fn				TransitMethodL()
   281 		Intended Usage	: To execute the CRegistryData::GetImplementationInformationL method for the test harness.
   282 		Error Condition	: Leaves with an error code.
   283 		@leave  		KErrNoMemory, (@see CRegistryData::GetImplementationInformationL)
   284 		@since			7.0
   285 		@return			None
   286 		@pre 			CRegistryData_GetImplementationInformationL_Transition is fully constructed.
   287 		@post			No change in the CRegistryData_GetImplementationInformationL_Transition apart
   288 						from iRegistryData, which may have changed state.
   289 						(@see CRegistryData::GetImplementationInformationL post-condition) for iRegistryData's new state.
   290 	*/
   291 	inline void TransitMethodL();
   292 
   293 	/**
   294 		@fn				Context() const
   295 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   296 		Error Condition	: None.
   297 		@since			7.0
   298 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   299 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   300 		@post			No change in the CRegistryData_GetImplementationInformationL_Transition
   301 	*/
   302 	inline CRegistryData_UnitTestContext& Context() const;
   303 	};	// CRegistryData_GetImplementationInformationL_Transition
   304 
   305 // ______________________________________________________________________________
   306 //
   307 /**
   308 	@internalComponent 
   309 	Comments : Transition test of the CRegistryData::IsRegisteredWithDateL method.
   310  */
   311 class CRegistryData_IsRegisteredWithDateL_Transition : public CTransitionType
   312 	{
   313 public:
   314 	/**
   315 		@fn				CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext,
   316 																	TTransitionValidator& aValidator)
   317 		Intended Usage	: Standard c'tor method.
   318 		Error Condition	: None.
   319 		@since			7.0
   320 		@param			aUTContext The context this transition is operating in.
   321 		@param			aValidator Used for checking the pre & post conditions of the test object.
   322 		@pre 			None.
   323 		@post			CRegistryData_IsRegisteredWithDateL_Transition is fully constructed.
   324 	*/
   325 	CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext,
   326 													TTransitionValidator& aValidator);
   327 	/**
   328 		@fn				TransitMethodL()
   329 		Intended Usage	: To execute the CRegistryData::IsRegisteredWithDateL method for the test harness.
   330 		Error Condition	: Leaves with an error code.
   331 		@leave  		KErrNoMemory, (@see CRegistryData::IsRegisteredWithDateL)
   332 		@since			7.0
   333 		@return			None
   334 		@pre 			CRegistryData_IsRegisteredWithDateL_Transition is fully constructed.
   335 		@post			No change in the CRegistryData_IsRegisteredWithDateL_Transition apart
   336 						from iRegistryData, which may have changed state.
   337 						(@see CRegistryData::IsRegisteredWithDateL post-condition) for iRegistryData's new state.
   338 	*/
   339 	inline void TransitMethodL();
   340 
   341 	/**
   342 		@fn				Context() const
   343 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   344 		Error Condition	: None.
   345 		@since			7.0
   346 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   347 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   348 		@post			No change in the CRegistryData_IsRegisteredWithDateL_Transition
   349 	*/
   350 	inline CRegistryData_UnitTestContext& Context() const;
   351 	};	// CRegistryData_IsRegisteredWithDateL_Transition
   352 
   353 // ______________________________________________________________________________
   354 //
   355 /**
   356 	@internalComponent
   357 	Comments : Transition test of the CRegistryData::ListImplementationsL method.
   358  */
   359 class CRegistryData_ListImplementationsL_Transition : public CTransitionType
   360 	{
   361 public:
   362 	/**
   363 		@fn				CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext,
   364 																	TTransitionValidator& aValidator)
   365 		Intended Usage	: Standard c'tor method.
   366 		Error Condition	: None.
   367 		@since			7.0
   368 		@param			aUTContext The context this transition is operating in.
   369 		@param			aValidator Used for checking the pre & post conditions of the test object.
   370 		@pre 			None.
   371 		@post			CRegistryData_ListImplementationsL_Transition is fully constructed.
   372 	*/
   373 	CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext,
   374 													TTransitionValidator& aValidator);
   375 	/**
   376 		@fn				TransitMethodL()
   377 		Intended Usage	: To execute the CRegistryData::ListImplementationsL method for the test harness.
   378 		Error Condition	: Leaves with an error code.
   379 		@leave  		KErrNoMemory, (@see CRegistryData::ListImplementationsL)
   380 		@since			7.0
   381 		@return			None
   382 		@pre 			CRegistryData_ListImplementationsL_Transition is fully constructed.
   383 		@post			No change in the CRegistryData_ListImplementationsL_Transition apart
   384 						from iRegistryData, which may have changed state.
   385 						(@see CRegistryData::ListImplementationsL post-condition) for iRegistryData's new state.
   386 	*/
   387 	inline void TransitMethodL();
   388 
   389 	/**
   390 		@fn				Context() const
   391 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   392 		Error Condition	: None.
   393 		@since			7.0
   394 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   395 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   396 		@post			No change in the CRegistryData_ListImplementationsL_Transition
   397 	*/
   398 	inline CRegistryData_UnitTestContext& Context() const;
   399 	};	// CRegistryData_ListImplementationsL_Transition
   400 
   401 // ______________________________________________________________________________
   402 //
   403 /**
   404 	@internalComponent
   405 	Comments : Transition test of the CRegistryData::SetEnabledState method.
   406  */
   407 class CRegistryData_SetEnabledState_Transition : public CTransitionType
   408 	{
   409 public:
   410 	/**
   411 		@fn				CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext,
   412 																	TTransitionValidator& aValidator)
   413 		Intended Usage	: Standard c'tor method.
   414 		Error Condition	: None.
   415 		@since			7.0
   416 		@param			aUTContext The context this transition is operating in.
   417 		@param			aValidator Used for checking the pre & post conditions of the test object.
   418 		@pre 			None.
   419 		@post			CRegistryData_SetEnabledState_Transition is fully constructed.
   420 	*/
   421 	CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext,
   422 											TTransitionValidator& aValidator);
   423 	/**
   424 		@fn				TransitMethodL()
   425 		Intended Usage	: To execute the CRegistryData::SetEnabledState method for the 
   426 						test harness.
   427 		Error Condition	: Leaves with an error code.
   428 		@leave  		KErrNoMemory
   429 		@since			7.0
   430 		@return			None
   431 		@pre 			CRegistryData_SetEnabledState_Transition is fully constructed.
   432 		@post			No change in the CRegistryData_SetEnabledState_Transition apart
   433 						from iRegistryData, which may have changed state.
   434 						(@see CRegistryData::SetEnabledState post-condition) for iRegistryData's new state.
   435 	*/
   436 	inline void TransitMethodL();
   437 
   438 	/**
   439 		@fn				Context() const
   440 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   441 		Error Condition	: None.
   442 		@since			7.0
   443 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   444 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   445 		@post			No change in the CRegistryData_MarkDisabled_Transition
   446 	*/
   447 	inline CRegistryData_UnitTestContext& Context() const;
   448 	};	// CRegistryData_MarkDisabled_Transition
   449 
   450 // ______________________________________________________________________________
   451 //
   452 /**
   453 	@internalComponent
   454 	Comments : Transition test of the CRegistryData::PersistNowL method.
   455  */
   456 class CRegistryData_PersistNowL_Transition : public CTransitionType
   457 	{
   458 public:
   459 	/**
   460 		@fn				CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext,
   461 																	TTransitionValidator& aValidator)
   462 		Intended Usage	: Standard c'tor method.
   463 		Error Condition	: None.
   464 		@since			7.0
   465 		@param			aUTContext The context this transition is operating in.
   466 		@param			aValidator Used for checking the pre & post conditions of the test object.
   467 		@pre 			None.
   468 		@post			CRegistryData_PersistNowL_Transition is fully constructed.
   469 	*/
   470 	CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext,
   471 													TTransitionValidator& aValidator);
   472 	/**
   473 		@fn				TransitMethodL()
   474 		Intended Usage	: To execute the CRegistryData::PersistNowL method for the test harness.
   475 		Error Condition	: Leaves with an error code.
   476 		@leave  		KErrNoMemory, (@see CRegistryData::PersistNowL)
   477 		@since			7.0
   478 		@return			None
   479 		@pre 			CRegistryData_PersistNowL_Transition is fully constructed.
   480 		@post			No change in the CRegistryData_PersistNowL_Transition apart
   481 						from iRegistryData, which may have changed state.
   482 						(@see CRegistryData::PersistNowL post-condition) for iRegistryData's new state.
   483 	*/
   484 	inline void TransitMethodL();
   485 
   486 	/**
   487 		@fn				Context() const
   488 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   489 		Error Condition	: None.
   490 		@since			7.0
   491 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   492 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   493 		@post			No change in the CRegistryData_PersistNowL_Transition
   494 	*/
   495 	inline CRegistryData_UnitTestContext& Context() const;
   496 	};	// CRegistryData_PersistNowL_Transition
   497 
   498 // ______________________________________________________________________________
   499 //
   500 /**
   501 	@internalComponent
   502 	Comments : Transition test of the CRegistryData::TemporaryUninstallL method.
   503  */
   504 class CRegistryData_TemporaryUninstallL_Transition : public CTransitionType
   505 	{
   506 public:
   507 	/**
   508 		@fn				CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
   509 																	TTransitionValidator& aValidator)
   510 		Intended Usage	: Standard c'tor method.
   511 		Error Condition	: None.
   512 		@since			7.0
   513 		@param			aUTContext The context this transition is operating in.
   514 		@param			aValidator Used for checking the pre & post conditions of the test object.
   515 		@pre 			None.
   516 		@post			CRegistryData_TemporaryUninstallL_Transition is fully constructed.
   517 	*/
   518 	CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
   519 													TTransitionValidator& aValidator);
   520 	/**
   521 		@fn				TransitMethodL()
   522 		Intended Usage	: To execute the CRegistryData::TemporaryUninstall method for the test harness.
   523 		Error Condition	: Leaves with an error code.
   524 		@leave  		KErrNoMemory, (@see CRegistryData::TemporaryUninstall)
   525 		@since			7.0
   526 		@return			None
   527 		@pre 			CRegistryData_TemporaryUninstall_Transition is fully constructed.
   528 		@post			No change in the CRegistryData_TemporaryUninstall_Transition apart
   529 						from iRegistryData, which may have changed state.
   530 						(@see CRegistryData::TemporaryUninstall post-condition) for iRegistryData's new state.
   531 	*/
   532 	inline void TransitMethodL();
   533 
   534 	/**
   535 		@fn				Context() const
   536 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   537 		Error Condition	: None.
   538 		@since			7.0
   539 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   540 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   541 		@post			No change in the CRegistryData_TemporaryUninstall_Transition
   542 	*/
   543 	inline CRegistryData_UnitTestContext& Context() const;
   544 	};	// CRegistryData_TemporaryUninstall_Transition
   545 
   546 // ______________________________________________________________________________
   547 //
   548 /**
   549 	@internalComponent
   550 	Comments : Transition test of the CRegistryData::UndoTemporaryUninstallL method.
   551  */
   552 class CRegistryData_UndoTemporaryUninstallL_Transition : public CTransitionType
   553 	{
   554 public:
   555 	/**
   556 		@fn				CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
   557 																	TTransitionValidator& aValidator)
   558 		Intended Usage	: Standard c'tor method.
   559 		Error Condition	: None.
   560 		@since			7.0
   561 		@param			aUTContext The context this transition is operating in.
   562 		@param			aValidator Used for checking the pre & post conditions of the test object.
   563 		@pre 			None.
   564 		@post			CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed.
   565 	*/
   566 	CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
   567 													TTransitionValidator& aValidator);
   568 	/**
   569 		@fn				TransitMethodL()
   570 		Intended Usage	: To execute the CRegistryData::UndoTemporaryUninstallL method for the test harness.
   571 		Error Condition	: Leaves with an error code.
   572 		@leave  		KErrNoMemory, (@see CRegistryData::UndoTemporaryUninstallL)
   573 		@since			7.0
   574 		@return			None
   575 		@pre 			CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed.
   576 		@post			No change in the CRegistryData_UndoTemporaryUninstallL_Transition apart
   577 						from iRegistryData, which may have changed state.
   578 						(@see CRegistryData::UndoTemporaryUninstallL post-condition) for iRegistryData's new state.
   579 	*/
   580 	inline void TransitMethodL();
   581 
   582 	/**
   583 		@fn				Context() const
   584 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   585 		Error Condition	: None.
   586 		@since			7.0
   587 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   588 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   589 		@post			No change in the CRegistryData_UndoTemporaryUninstallL_Transition
   590 	*/
   591 	inline CRegistryData_UnitTestContext& Context() const;
   592 	};	// CRegistryData_UndoTemporaryUninstallL_Transition
   593 
   594 // ______________________________________________________________________________
   595 //
   596 /**
   597 	@internalComponent 
   598 	Comments : Transition test of the CRegistryData::UpdateDllDataL method.
   599  */
   600 class CRegistryData_UpdateDllDataL_Transition : public CTransitionType
   601 	{
   602 public:
   603 	/**
   604 		@fn				CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext,
   605 																	TTransitionValidator& aValidator)
   606 		Intended Usage	: Standard c'tor method.
   607 		Error Condition	: None.
   608 		@since			7.0
   609 		@param			aUTContext The context this transition is operating in.
   610 		@param			aValidator Used for checking the pre & post conditions of the test object.
   611 		@pre 			None.
   612 		@post			CRegistryData_UpdateDllDataL_Transition is fully constructed.
   613 	*/
   614 	CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext,
   615 													TTransitionValidator& aValidator);
   616 	/**
   617 		@fn				TransitMethodL()
   618 		Intended Usage	: To execute the CRegistryData::UpdateDllDataL method for the test harness.
   619 		Error Condition	: Leaves with an error code.
   620 		@leave  		KErrNoMemory, (@see CRegistryData::UpdateDllDataL)
   621 		@since			7.0
   622 		@return			None
   623 		@pre 			CRegistryData_UpdateDllDataL_Transition is fully constructed.
   624 		@post			No change in the CRegistryData_UpdateDllDataL_Transition apart
   625 						from iRegistryData, which may have changed state.
   626 						(@see CRegistryData::UpdateDllDataL post-condition) for iRegistryData's new state.
   627 	*/
   628 	inline void TransitMethodL();
   629 
   630 	/**
   631 		@fn				Context() const
   632 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   633 		Error Condition	: None.
   634 		@since			7.0
   635 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   636 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   637 		@post			No change in the CRegistryData_UpdateDllDataL_Transition
   638 	*/
   639 	inline CRegistryData_UnitTestContext& Context() const;
   640 	};	// CRegistryData_UpdateDllDataL_Transition
   641 
   642 // ______________________________________________________________________________
   643 //
   644 /**
   645 	@internalComponent
   646 	Comments : Transition test of the CRegistryData::BuildIndexesL method.
   647  */
   648 class CRegistryData_BuildIndexesL_Transition : public CTransitionType
   649 	{
   650 public:
   651 	/**
   652 		@fn				CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext,
   653 																	TTransitionValidator& aValidator)
   654 		Intended Usage	: Standard c'tor method.
   655 		Error Condition	: None.
   656 		@since			7.0
   657 		@param			aUTContext The context this transition is operating in.
   658 		@param			aValidator Used for checking the pre & post conditions of the test object.
   659 		@pre 			None.
   660 		@post			CRegistryData_BuildIndexesL_Transition is fully constructed.
   661 	*/
   662 	CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext,
   663 													TTransitionValidator& aValidator);
   664 	/**
   665 		@fn				TransitMethodL()
   666 		Intended Usage	: To execute the CRegistryData::BuildIndexesL method for the test harness.
   667 		Error Condition	: Leaves with an error code.
   668 		@leave  		KErrNoMemory, (@see CRegistryData::BuildIndexesL)
   669 		@since			7.0
   670 		@return			None
   671 		@pre 			CRegistryData_BuildIndexesL_Transition is fully constructed.
   672 		@post			No change in the CRegistryData_BuildIndexesL_Transition apart
   673 						from iRegistryData, which may have changed state.
   674 						(@see CRegistryData::BuildIndexesL post-condition) for iRegistryData's new state.
   675 	*/
   676 	inline void TransitMethodL();
   677 
   678 	/**
   679 		@fn				Context() const
   680 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   681 		Error Condition	: None.
   682 		@since			7.0
   683 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   684 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   685 		@post			No change in the CRegistryData_BuildIndexesL_Transition
   686 	*/
   687 	inline CRegistryData_UnitTestContext& Context() const;
   688 	};	// CRegistryData_BuildIndexesL_Transition
   689 
   690 // ______________________________________________________________________________
   691 //
   692 /**
   693 	@internalComponent
   694 	Comments : Transition test of the CRegistryData::IndexedFind method.
   695  */
   696 class CRegistryData_IndexedFind_Transition : public CTransitionType
   697 	{
   698 public:
   699 	/**
   700 		@fn				CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext,
   701 																	TTransitionValidator& aValidator)
   702 		Intended Usage	: Standard c'tor method.
   703 		Error Condition	: None.
   704 		@since			7.0
   705 		@param			aUTContext The context this transition is operating in.
   706 		@param			aValidator Used for checking the pre & post conditions of the test object.
   707 		@pre 			None.
   708 		@post			CRegistryData_IndexedFind_Transition is fully constructed.
   709 	*/
   710 	CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext,
   711 													TTransitionValidator& aValidator);
   712 	/**
   713 		@fn				TransitMethodL()
   714 		Intended Usage	: To execute the CRegistryData::IndexedFind method for the test harness.
   715 		Error Condition	: Leaves with an error code.
   716 		@leave  		KErrNoMemory, (@see CRegistryData::IndexedFind)
   717 		@since			7.0
   718 		@return			None
   719 		@pre 			CRegistryData_IndexedFind_Transition is fully constructed.
   720 		@post			No change in the CRegistryData_IndexedFind_Transition apart
   721 						from iRegistryData, which may have changed state.
   722 						(@see CRegistryData::IndexedFind post-condition) for iRegistryData's new state.
   723 	*/
   724 	inline void TransitMethodL();
   725 
   726 	/**
   727 		@fn				Context() const
   728 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   729 		Error Condition	: None.
   730 		@since			7.0
   731 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   732 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   733 		@post			No change in the CRegistryData_IndexedFind_Transition
   734 	*/
   735 	inline CRegistryData_UnitTestContext& Context() const;
   736 	};	// CRegistryData_IndexedFind_Transition
   737 
   738 // ______________________________________________________________________________
   739 //
   740 /**
   741 	@internalComponent
   742 	Comments : Transition test of the CRegistryData::RestoreL method.
   743  */
   744 class CRegistryData_RestoreL_Transition : public CTransitionType
   745 	{
   746 public:
   747 	/**
   748 		@fn				CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext,
   749 																	TTransitionValidator& aValidator)
   750 		Intended Usage	: Standard c'tor method.
   751 		Error Condition	: None.
   752 		@since			7.0
   753 		@param			aUTContext The context this transition is operating in.
   754 		@param			aValidator Used for checking the pre & post conditions of the test object.
   755 		@pre 			None.
   756 		@post			CRegistryData_RestoreL_Transition is fully constructed.
   757 	*/
   758 	CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext,
   759 													TTransitionValidator& aValidator);
   760 	/**
   761 		@fn				TransitMethodL()
   762 		Intended Usage	: To execute the CRegistryData::RestoreL method for the test harness.
   763 		Error Condition	: Leaves with an error code.
   764 		@leave  		KErrNoMemory, (@see CRegistryData::RestoreL)
   765 		@since			7.0
   766 		@return			None
   767 		@pre 			CRegistryData_RestoreL_Transition is fully constructed.
   768 		@post			No change in the CRegistryData_RestoreL_Transition apart
   769 						from iRegistryData, which may have changed state.
   770 						(@see CRegistryData::RestoreL post-condition) for iRegistryData's new state.
   771 	*/
   772 	inline void TransitMethodL();
   773 
   774 	/**
   775 		@fn				Context() const
   776 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   777 		Error Condition	: None.
   778 		@since			7.0
   779 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   780 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   781 		@post			No change in the CRegistryData_RestoreL_Transition
   782 	*/
   783 	inline CRegistryData_UnitTestContext& Context() const;
   784 	};	// CRegistryData_RestoreL_Transition
   785 
   786 // ______________________________________________________________________________
   787 //
   788 /**
   789 	@internalComponent
   790 	Comments : Transition test of the CRegistryData::StoreL method.
   791  */
   792 class CRegistryData_StoreL_Transition : public CTransitionType
   793 	{
   794 public:
   795 	/**
   796 		@fn				CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext,
   797 																	TTransitionValidator& aValidator)
   798 		Intended Usage	: Standard c'tor method.
   799 		Error Condition	: None.
   800 		@since			7.0
   801 		@param			aUTContext The context this transition is operating in.
   802 		@param			aValidator Used for checking the pre & post conditions of the test object.
   803 		@pre 			None.
   804 		@post			CRegistryData_StoreL_Transition is fully constructed.
   805 	*/
   806 	CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext,
   807 													TTransitionValidator& aValidator);
   808 	/**
   809 		@fn				TransitMethodL()
   810 		Intended Usage	: To execute the CRegistryData::StoreL method for the test harness.
   811 		Error Condition	: Leaves with an error code.
   812 		@leave  		KErrNoMemory, (@see CRegistryData::StoreL)
   813 		@since			7.0
   814 		@return			None
   815 		@pre 			CRegistryData_StoreL_Transition is fully constructed.
   816 		@post			No change in the CRegistryData_StoreL_Transition apart
   817 						from iRegistryData, which may have changed state.
   818 						(@see CRegistryData::StoreL post-condition) for iRegistryData's new state.
   819 	*/
   820 	inline void TransitMethodL();
   821 
   822 	/**
   823 		@fn				Context() const
   824 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   825 		Error Condition	: None.
   826 		@since			7.0
   827 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   828 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   829 		@post			No change in the CRegistryData_StoreL_Transition
   830 	*/
   831 	inline CRegistryData_UnitTestContext& Context() const;
   832 	};	// CRegistryData_StoreL_Transition
   833 
   834 // ______________________________________________________________________________
   835 //
   836 /**
   837 	@internalComponent
   838 	Comments : Transition test of the CRegistryData::MatchOnUid method.
   839  */
   840 class CRegistryData_MatchOnUid_Transition : public CTransitionType
   841 	{
   842 public:
   843 	/**
   844 		@fn				CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext,
   845 																	TTransitionValidator& aValidator)
   846 		Intended Usage	: Standard c'tor method.
   847 		Error Condition	: None.
   848 		@since			7.0
   849 		@param			aUTContext The context this transition is operating in.
   850 		@param			aValidator Used for checking the pre & post conditions of the test object.
   851 		@pre 			None.
   852 		@post			CRegistryData_MatchOnUid_Transition is fully constructed.
   853 	*/
   854 	CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext,
   855 													TTransitionValidator& aValidator);
   856 	/**
   857 		@fn				TransitMethodL()
   858 		Intended Usage	: To execute the CRegistryData::MatchOnUid method for the test harness.
   859 		Error Condition	: Leaves with an error code.
   860 		@leave  		KErrNoMemory, (@see CRegistryData::MatchOnUid)
   861 		@since			7.0
   862 		@return			None
   863 		@pre 			CRegistryData_MatchOnUid_Transition is fully constructed.
   864 		@post			No change in the CRegistryData_MatchOnUid_Transition apart
   865 						from iRegistryData, which may have changed state.
   866 						(@see CRegistryData::MatchOnUid post-condition) for iRegistryData's new state.
   867 	*/
   868 	inline void TransitMethodL();
   869 
   870 	/**
   871 		@fn				Context() const
   872 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   873 		Error Condition	: None.
   874 		@since			7.0
   875 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   876 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   877 		@post			No change in the CRegistryData_MatchOnUid_Transition
   878 	*/
   879 	inline CRegistryData_UnitTestContext& Context() const;
   880 	};	// CRegistryData_MatchOnUid_Transition
   881 
   882 // ______________________________________________________________________________
   883 //
   884 /**
   885 	@internalComponent
   886 	Comments : Transition test of the CRegistryData::DiscoveriesBeginning method.
   887  */
   888 class CRegistryData_DiscoveriesBeginning_Transition : public CTransition
   889 	{
   890 public:
   891 	/**
   892 		@fn				CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext,
   893 																	TTransitionValidator& aValidator)
   894 		Intended Usage	: Standard c'tor method.
   895 		Error Condition	: None.
   896 		@since			7.0
   897 		@param			aUTContext The context this transition is operating in.
   898 		@param			aValidator Used for checking the pre & post conditions of the test object.
   899 		@pre 			None.
   900 		@post			CRegistryData_DiscoveriesBeginning_Transition is fully constructed.
   901 	*/
   902 	CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext,
   903 													TTransitionValidator& aValidator);
   904 	/**
   905 		@fn				TransitMethodL()
   906 		Intended Usage	: To execute the CRegistryData::DiscoveriesBeginning method for the test harness.
   907 		Error Condition	: Leaves with an error code.
   908 		@leave  		KErrNoMemory, (@see CRegistryData::DiscoveriesBeginning)
   909 		@since			7.0
   910 		@return			None
   911 		@pre 			CRegistryData_DiscoveriesBeginning_Transition is fully constructed.
   912 		@post			No change in the CRegistryData_DiscoveriesBeginning_Transition apart
   913 						from iRegistryData, which may have changed state.
   914 						(@see CRegistryData::DiscoveriesBeginning post-condition) for iRegistryData's new state.
   915 	*/
   916 	inline void TransitMethodL();
   917 
   918 	/**
   919 		@fn				Context() const
   920 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   921 		Error Condition	: None.
   922 		@since			7.0
   923 		@return			The unit test context cast to a CRegistryData_UnitTestContext
   924 		@pre 			iUTContext is a valid CRegistryData_UnitTestContext.
   925 		@post			No change in the CRegistryData_DiscoveriesBeginning_Transition
   926 	*/
   927 	inline CRegistryData_UnitTestContext& Context() const;
   928 	};	// CRegistryData_DiscoveriesBeginning_Transition
   929 
   930 #include "RegistryDataTransitions.inl"
   931 
   932 #endif		// __REGISTRYDATATRANSITIONS_H__