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