os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTransitionValidation.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 validation classes for the CRegistryData transitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __REGISTRYDATATRANSITIONVALIDATION_H__
sl@0
    19
#define __REGISTRYDATATRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "RegistryDataTransitions.h"
sl@0
    22
sl@0
    23
// ______________________________________________________________________________
sl@0
    24
//
sl@0
    25
/**
sl@0
    26
	@internalComponent
sl@0
    27
sl@0
    28
	Comments : Provide all the CreateAndDestroy Unit Test's specific
sl@0
    29
	validatation for the state of a transition before and after its execution.
sl@0
    30
	on the CRegistryData test class for a transition.
sl@0
    31
 */
sl@0
    32
class TRegistryData_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	/**
sl@0
    36
		@fn				TRegistryData_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    37
		Intended Usage	: Standard constructor.
sl@0
    38
		@leave  		KErrNoMemory
sl@0
    39
		@since			7.0
sl@0
    40
		@param			aUTContext The context within which this transition is executing
sl@0
    41
	 */
sl@0
    42
	inline TRegistryData_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    43
sl@0
    44
	/**
sl@0
    45
		@fn				ValidatePreConditions()
sl@0
    46
		Intended Usage	: Implemented by the developer to check the
sl@0
    47
						end state of the transition behaviour.
sl@0
    48
		Error Condition	: Invalid pre-conditions
sl@0
    49
		@since			7.0
sl@0
    50
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
    51
		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
sl@0
    52
		@post			No change to the iUTContext class.
sl@0
    53
	*/
sl@0
    54
	virtual inline TBool ValidatePreConditions();
sl@0
    55
sl@0
    56
	/**
sl@0
    57
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
    58
		Intended Usage	:	Implemented by the developer to check the
sl@0
    59
						end state of the transition behaviour.
sl@0
    60
						When overriding, if the transition calls an asynchronous function
sl@0
    61
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
    62
						asynchronous function has been called and, secondly, after the 
sl@0
    63
						asynchronous request has completed. The parameter aAsyncState can
sl@0
    64
						be used to distinguish between these two cases.
sl@0
    65
		Error Condition	: Invalid post-conditions.
sl@0
    66
		@since			7.0
sl@0
    67
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
    68
						EAsyncCompleted if the function has completed.
sl@0
    69
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
    70
		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
sl@0
    71
		@post			No change to the iUTContext class.
sl@0
    72
	*/
sl@0
    73
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
    74
	};	// TRegistryData_Ctor_TransitionValidator
sl@0
    75
sl@0
    76
sl@0
    77
// ______________________________________________________________________________
sl@0
    78
//
sl@0
    79
/**
sl@0
    80
	@internalComponent
sl@0
    81
sl@0
    82
	Comments : Provide all the CreateAndDestroy Unit Test's specific
sl@0
    83
	validatation for the state of a transition before and after its execution.
sl@0
    84
	on the CRegistryData test class for a transition.
sl@0
    85
 */
sl@0
    86
class TRegistryData_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    87
	{
sl@0
    88
public:
sl@0
    89
	/**
sl@0
    90
		@fn				TRegistryData_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    91
		Intended Usage	: Default constructor
sl@0
    92
		@leave  		KErrNoMemory
sl@0
    93
		@since			7.0
sl@0
    94
		@param			aUTContext The context within which this transition is executing
sl@0
    95
	 */
sl@0
    96
	inline TRegistryData_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    97
sl@0
    98
	/**
sl@0
    99
		@fn				ValidatePreConditions()
sl@0
   100
		Intended Usage	: Implemented by the developer to check the
sl@0
   101
						end state of the transition behaviour.
sl@0
   102
		Error Condition	: Invalid pre-conditions
sl@0
   103
		@since			7.0
sl@0
   104
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   105
		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
sl@0
   106
		@post			No change to the iUTContext class.
sl@0
   107
	*/
sl@0
   108
	virtual inline TBool ValidatePreConditions();
sl@0
   109
sl@0
   110
	/**
sl@0
   111
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   112
		Intended Usage	:	Implemented by the developer to check the
sl@0
   113
						end state of the transition behaviour.
sl@0
   114
						When overriding, if the transition calls an asynchronous function
sl@0
   115
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   116
						asynchronous function has been called and, secondly, after the 
sl@0
   117
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   118
						be used to distinguish between these two cases.
sl@0
   119
		Error Condition	: Invalid post-conditions.
sl@0
   120
		@since			7.0
sl@0
   121
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   122
						EAsyncCompleted if the function has completed.
sl@0
   123
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   124
		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
sl@0
   125
		@post			No change to the iUTContext class.
sl@0
   126
	*/
sl@0
   127
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   128
	};	// TRegistryData_Dtor_TransitionValidator
sl@0
   129
sl@0
   130
// ______________________________________________________________________________
sl@0
   131
//
sl@0
   132
/**
sl@0
   133
	@internalComponent
sl@0
   134
sl@0
   135
	Comments : Provide all the AddDllDataLUnit Test's specific
sl@0
   136
	validatation for the state of a transition before and after its execution.
sl@0
   137
	on the CRegistryData test class for a transition.
sl@0
   138
 */
sl@0
   139
class TRegistryData_AddDllDataL_TransitionValidator : public TTransitionValidator
sl@0
   140
	{
sl@0
   141
public:
sl@0
   142
	/**
sl@0
   143
		@fn				TRegistryData_AddDllDataL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   144
		Intended Usage	:	
sl@0
   145
		@leave  		KErrNoMemory
sl@0
   146
		@since			7.0
sl@0
   147
		@param			aUTContext The context within which this transition is executing
sl@0
   148
	 */
sl@0
   149
	inline TRegistryData_AddDllDataL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   150
sl@0
   151
	/**
sl@0
   152
		@fn				ValidatePreConditions()
sl@0
   153
		Intended Usage	: Implemented by the developer to check the
sl@0
   154
						end state of the transition behaviour.
sl@0
   155
		Error Condition	: Invalid pre-conditions
sl@0
   156
		@since			7.0
sl@0
   157
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   158
		@pre 			TRegistryData_AddDllDataL_TransitionValidator is fully constructed.
sl@0
   159
		@post			No change to the iUTContext class.
sl@0
   160
	*/
sl@0
   161
	virtual inline TBool ValidatePreConditions();
sl@0
   162
sl@0
   163
	/**
sl@0
   164
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   165
		Intended Usage	:	Implemented by the developer to check the
sl@0
   166
						end state of the transition behaviour.
sl@0
   167
						When overriding, if the transition calls an asynchronous function
sl@0
   168
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   169
						asynchronous function has been called and, secondly, after the 
sl@0
   170
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   171
						be used to distinguish between these two cases.
sl@0
   172
		Error Condition	: Invalid post-conditions.
sl@0
   173
		@since			7.0
sl@0
   174
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   175
						EAsyncCompleted if the function has completed.
sl@0
   176
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   177
		@pre 			TRegistryData_AddDllDataL_TransitionValidator is fully constructed.
sl@0
   178
		@post			No change to the iUTContext class.
sl@0
   179
	*/
sl@0
   180
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   181
	};	// TRegistryData_AddDllDataL_TransitionValidator
sl@0
   182
sl@0
   183
// ______________________________________________________________________________
sl@0
   184
//
sl@0
   185
/**
sl@0
   186
	@internalComponent
sl@0
   187
sl@0
   188
	Comments : Provide all the AddDllDataLUnit Test's specific
sl@0
   189
	validatation for the state of a transition before and after its execution.
sl@0
   190
	on the CRegistryData test class for a transition.
sl@0
   191
 */
sl@0
   192
class TRegistryData_ListImplementations_TransitionValidator : public TTransitionValidator
sl@0
   193
	{
sl@0
   194
public:
sl@0
   195
	/**
sl@0
   196
		@fn				TRegistryData_ListImplementations_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   197
		Intended Usage	:	
sl@0
   198
		@leave  		KErrNoMemory
sl@0
   199
		@since			7.0
sl@0
   200
		@param			aUTContext The context within which this transition is executing
sl@0
   201
	 */
sl@0
   202
	inline TRegistryData_ListImplementations_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   203
sl@0
   204
	/**
sl@0
   205
		@fn				ValidatePreConditions()
sl@0
   206
		Intended Usage	: Implemented by the developer to check the
sl@0
   207
						end state of the transition behaviour.
sl@0
   208
		Error Condition	: Invalid pre-conditions
sl@0
   209
		@since			7.0
sl@0
   210
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   211
		@pre 			TRegistryData_ListImplementations_TransitionValidator is fully constructed.
sl@0
   212
		@post			No change to the iUTContext class.
sl@0
   213
	*/
sl@0
   214
	virtual inline TBool ValidatePreConditions();
sl@0
   215
sl@0
   216
	/**
sl@0
   217
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   218
		Intended Usage	:	Implemented by the developer to check the
sl@0
   219
						end state of the transition behaviour.
sl@0
   220
						When overriding, if the transition calls an asynchronous function
sl@0
   221
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   222
						asynchronous function has been called and, secondly, after the 
sl@0
   223
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   224
						be used to distinguish between these two cases.
sl@0
   225
		Error Condition	: Invalid post-conditions.
sl@0
   226
		@since			7.0
sl@0
   227
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   228
						EAsyncCompleted if the function has completed.
sl@0
   229
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   230
		@pre 			TRegistryData_ListImplementations_TransitionValidator is fully constructed.
sl@0
   231
		@post			No change to the iUTContext class.
sl@0
   232
	*/
sl@0
   233
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   234
	};	// TRegistryData_ListImplementations_TransitionValidator
sl@0
   235
sl@0
   236
// ______________________________________________________________________________
sl@0
   237
//
sl@0
   238
/**
sl@0
   239
	@internalComponent
sl@0
   240
 
sl@0
   241
	Comments : Provide all the GetImplementationInformationUnit Test's specific
sl@0
   242
	validatation for the state of a transition before and after its execution.
sl@0
   243
	on the CRegistryData test class for a transition.
sl@0
   244
 */
sl@0
   245
class TRegistryData_GetImplementationInformation_TransitionValidator : public TTransitionValidator
sl@0
   246
	{
sl@0
   247
public:
sl@0
   248
	/**
sl@0
   249
		@fn				TRegistryData_GetImplementationInformation_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   250
		Intended Usage	:	
sl@0
   251
		@leave  		KErrNoMemory
sl@0
   252
		@since			7.0
sl@0
   253
		@param			aUTContext The context within which this transition is executing
sl@0
   254
	 */
sl@0
   255
	inline TRegistryData_GetImplementationInformation_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   256
sl@0
   257
	/**
sl@0
   258
		@fn				ValidatePreConditions()
sl@0
   259
		Intended Usage	: Implemented by the developer to check the
sl@0
   260
						end state of the transition behaviour.
sl@0
   261
		Error Condition	: Invalid pre-conditions
sl@0
   262
		@since			7.0
sl@0
   263
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   264
		@pre 			TRegistryData_GetImplementationInformation_TransitionValidator is fully constructed.
sl@0
   265
		@post			No change to the iUTContext class.
sl@0
   266
	*/
sl@0
   267
	virtual inline TBool ValidatePreConditions();
sl@0
   268
sl@0
   269
	/**
sl@0
   270
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   271
		Intended Usage	:	Implemented by the developer to check the
sl@0
   272
						end state of the transition behaviour.
sl@0
   273
						When overriding, if the transition calls an asynchronous function
sl@0
   274
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   275
						asynchronous function has been called and, secondly, after the 
sl@0
   276
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   277
						be used to distinguish between these two cases.
sl@0
   278
		Error Condition	: Invalid post-conditions.
sl@0
   279
		@since			7.0
sl@0
   280
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   281
						EAsyncCompleted if the function has completed.
sl@0
   282
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   283
		@pre 			TRegistryData_GetImplementationInformation_TransitionValidator is fully constructed.
sl@0
   284
		@post			No change to the iUTContext class.
sl@0
   285
	*/
sl@0
   286
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   287
	};	// TRegistryData_GetImplementationInformation_TransitionValidator
sl@0
   288
sl@0
   289
// ______________________________________________________________________________
sl@0
   290
//
sl@0
   291
/**
sl@0
   292
	@internalComponent
sl@0
   293
 
sl@0
   294
	Comments : Provide all the IsRegisteredWithDateUnit Test's specific
sl@0
   295
	validatation for the state of a transition before and after its execution.
sl@0
   296
	on the CRegistryData test class for a transition.
sl@0
   297
 */
sl@0
   298
class TRegistryData_IsRegisteredWithDate_TransitionValidator : public TTransitionValidator
sl@0
   299
	{
sl@0
   300
public:
sl@0
   301
	/**
sl@0
   302
		@fn				TRegistryData_IsRegisteredWithDate_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   303
		Intended Usage	:	
sl@0
   304
		@leave  		KErrNoMemory
sl@0
   305
		@since			7.0
sl@0
   306
		@param			aUTContext The context within which this transition is executing
sl@0
   307
	 */
sl@0
   308
	inline TRegistryData_IsRegisteredWithDate_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   309
sl@0
   310
	/**
sl@0
   311
		@fn				ValidatePreConditions()
sl@0
   312
		Intended Usage	: Implemented by the developer to check the
sl@0
   313
						end state of the transition behaviour.
sl@0
   314
		Error Condition	: Invalid pre-conditions
sl@0
   315
		@since			7.0
sl@0
   316
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   317
		@pre 			TRegistryData_IsRegisteredWithDate_TransitionValidator is fully constructed.
sl@0
   318
		@post			No change to the iUTContext class.
sl@0
   319
	*/
sl@0
   320
	virtual inline TBool ValidatePreConditions();
sl@0
   321
sl@0
   322
	/**
sl@0
   323
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   324
		Intended Usage	:	Implemented by the developer to check the
sl@0
   325
						end state of the transition behaviour.
sl@0
   326
						When overriding, if the transition calls an asynchronous function
sl@0
   327
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   328
						asynchronous function has been called and, secondly, after the 
sl@0
   329
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   330
						be used to distinguish between these two cases.
sl@0
   331
		Error Condition	: Invalid post-conditions.
sl@0
   332
		@since			7.0
sl@0
   333
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   334
						EAsyncCompleted if the function has completed.
sl@0
   335
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   336
		@pre 			TRegistryData_IsRegisteredWithDate_TransitionValidator is fully constructed.
sl@0
   337
		@post			No change to the iUTContext class.
sl@0
   338
	*/
sl@0
   339
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   340
	};	// TRegistryData_IsRegisteredWithDate_TransitionValidator
sl@0
   341
sl@0
   342
// ______________________________________________________________________________
sl@0
   343
//
sl@0
   344
/**
sl@0
   345
	@internalComponent
sl@0
   346
 
sl@0
   347
	Comments : Provide all the PersistNowUnit Test's specific
sl@0
   348
	validatation for the state of a transition before and after its execution.
sl@0
   349
	on the CRegistryData test class for a transition.
sl@0
   350
 */
sl@0
   351
class TRegistryData_PersistNow_TransitionValidator : public TTransitionValidator
sl@0
   352
	{
sl@0
   353
public:
sl@0
   354
	/**
sl@0
   355
		@fn				TRegistryData_PersistNow_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   356
		Intended Usage	:	
sl@0
   357
		@leave  		KErrNoMemory
sl@0
   358
		@since			7.0
sl@0
   359
		@param			aUTContext The context within which this transition is executing
sl@0
   360
	 */
sl@0
   361
	inline TRegistryData_PersistNow_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   362
sl@0
   363
	/**
sl@0
   364
		@fn				ValidatePreConditions()
sl@0
   365
		Intended Usage	: Implemented by the developer to check the
sl@0
   366
						end state of the transition behaviour.
sl@0
   367
		Error Condition	: Invalid pre-conditions
sl@0
   368
		@since			7.0
sl@0
   369
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   370
		@pre 			TRegistryData_PersistNow_TransitionValidator is fully constructed.
sl@0
   371
		@post			No change to the iUTContext class.
sl@0
   372
	*/
sl@0
   373
	virtual inline TBool ValidatePreConditions();
sl@0
   374
sl@0
   375
	/**
sl@0
   376
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   377
		Intended Usage	:	Implemented by the developer to check the
sl@0
   378
						end state of the transition behaviour.
sl@0
   379
						When overriding, if the transition calls an asynchronous function
sl@0
   380
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   381
						asynchronous function has been called and, secondly, after the 
sl@0
   382
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   383
						be used to distinguish between these two cases.
sl@0
   384
		Error Condition	: Invalid post-conditions.
sl@0
   385
		@since			7.0
sl@0
   386
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   387
						EAsyncCompleted if the function has completed.
sl@0
   388
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   389
		@pre 			TRegistryData_PersistNow_TransitionValidator is fully constructed.
sl@0
   390
		@post			No change to the iUTContext class.
sl@0
   391
	*/
sl@0
   392
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   393
	};	// TRegistryData_PersistNow_TransitionValidator
sl@0
   394
sl@0
   395
// ______________________________________________________________________________
sl@0
   396
//
sl@0
   397
/**
sl@0
   398
	@internalComponent
sl@0
   399
sl@0
   400
	Comments : Provide all the TemporaryUninstallUnit Test's specific
sl@0
   401
	validatation for the state of a transition before and after its execution.
sl@0
   402
	on the CRegistryData test class for a transition.
sl@0
   403
 */
sl@0
   404
class TRegistryData_TemporaryUninstall_TransitionValidator : public TTransitionValidator
sl@0
   405
	{
sl@0
   406
public:
sl@0
   407
	/**
sl@0
   408
		@fn				TRegistryData_TemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   409
		Intended Usage	:	
sl@0
   410
		@leave  		KErrNoMemory
sl@0
   411
		@since			7.0
sl@0
   412
		@param			aUTContext The context within which this transition is executing
sl@0
   413
	 */
sl@0
   414
	inline TRegistryData_TemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   415
sl@0
   416
	/**
sl@0
   417
		@fn				ValidatePreConditions()
sl@0
   418
		Intended Usage	: Implemented by the developer to check the
sl@0
   419
						end state of the transition behaviour.
sl@0
   420
		Error Condition	: Invalid pre-conditions
sl@0
   421
		@since			7.0
sl@0
   422
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   423
		@pre 			TRegistryData_TemporaryUninstall_TransitionValidator is fully constructed.
sl@0
   424
		@post			No change to the iUTContext class.
sl@0
   425
	*/
sl@0
   426
	virtual inline TBool ValidatePreConditions();
sl@0
   427
sl@0
   428
	/**
sl@0
   429
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   430
		Intended Usage	:	Implemented by the developer to check the
sl@0
   431
						end state of the transition behaviour.
sl@0
   432
						When overriding, if the transition calls an asynchronous function
sl@0
   433
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   434
						asynchronous function has been called and, secondly, after the 
sl@0
   435
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   436
						be used to distinguish between these two cases.
sl@0
   437
		Error Condition	: Invalid post-conditions.
sl@0
   438
		@since			7.0
sl@0
   439
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   440
						EAsyncCompleted if the function has completed.
sl@0
   441
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   442
		@pre 			TRegistryData_TemporaryUninstall_TransitionValidator is fully constructed.
sl@0
   443
		@post			No change to the iUTContext class.
sl@0
   444
	*/
sl@0
   445
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   446
	};	// TRegistryData_TemporaryUninstall_TransitionValidator
sl@0
   447
sl@0
   448
// ______________________________________________________________________________
sl@0
   449
//
sl@0
   450
/**
sl@0
   451
	@internalComponent
sl@0
   452
sl@0
   453
	Comments : Provide all the UndoTemporaryUninstallUnit Test's specific
sl@0
   454
	validatation for the state of a transition before and after its execution.
sl@0
   455
	on the CRegistryData test class for a transition.
sl@0
   456
 */
sl@0
   457
class TRegistryData_UndoTemporaryUninstall_TransitionValidator : public TTransitionValidator
sl@0
   458
	{
sl@0
   459
public:
sl@0
   460
	/**
sl@0
   461
		@fn				TRegistryData_UndoTemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   462
		Intended Usage	:	
sl@0
   463
		@leave  		KErrNoMemory
sl@0
   464
		@since			7.0
sl@0
   465
		@param			aUTContext The context within which this transition is executing
sl@0
   466
	 */
sl@0
   467
	inline TRegistryData_UndoTemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   468
sl@0
   469
	/**
sl@0
   470
		@fn				ValidatePreConditions()
sl@0
   471
		Intended Usage	: Implemented by the developer to check the
sl@0
   472
						end state of the transition behaviour.
sl@0
   473
		Error Condition	: Invalid pre-conditions
sl@0
   474
		@since			7.0
sl@0
   475
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   476
		@pre 			TRegistryData_UndoTemporaryUninstall_TransitionValidator is fully constructed.
sl@0
   477
		@post			No change to the iUTContext class.
sl@0
   478
	*/
sl@0
   479
	virtual inline TBool ValidatePreConditions();
sl@0
   480
sl@0
   481
	/**
sl@0
   482
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   483
		Intended Usage	:	Implemented by the developer to check the
sl@0
   484
						end state of the transition behaviour.
sl@0
   485
						When overriding, if the transition calls an asynchronous function
sl@0
   486
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   487
						asynchronous function has been called and, secondly, after the 
sl@0
   488
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   489
						be used to distinguish between these two cases.
sl@0
   490
		Error Condition	: Invalid post-conditions.
sl@0
   491
		@since			7.0
sl@0
   492
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   493
						EAsyncCompleted if the function has completed.
sl@0
   494
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   495
		@pre 			TRegistryData_UndoTemporaryUninstall_TransitionValidator is fully constructed.
sl@0
   496
		@post			No change to the iUTContext class.
sl@0
   497
	*/
sl@0
   498
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   499
	};	// TRegistryData_UndoTemporaryUninstall_TransitionValidator
sl@0
   500
sl@0
   501
// ______________________________________________________________________________
sl@0
   502
//
sl@0
   503
/**
sl@0
   504
	@internalComponent
sl@0
   505
sl@0
   506
	Comments : Provide all the UpdateDllDataUnit Test's specific
sl@0
   507
	validatation for the state of a transition before and after its execution.
sl@0
   508
	on the CRegistryData test class for a transition.
sl@0
   509
 */
sl@0
   510
class TRegistryData_UpdateDllData_TransitionValidator : public TTransitionValidator
sl@0
   511
	{
sl@0
   512
public:
sl@0
   513
	/**
sl@0
   514
		@fn				TRegistryData_UpdateDllData_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   515
		Intended Usage	:	
sl@0
   516
		@leave  		KErrNoMemory
sl@0
   517
		@since			7.0
sl@0
   518
		@param			aUTContext The context within which this transition is executing
sl@0
   519
	 */
sl@0
   520
	inline TRegistryData_UpdateDllData_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   521
sl@0
   522
	/**
sl@0
   523
		@fn				ValidatePreConditions()
sl@0
   524
		Intended Usage	: Implemented by the developer to check the
sl@0
   525
						end state of the transition behaviour.
sl@0
   526
		Error Condition	: Invalid pre-conditions
sl@0
   527
		@since			7.0
sl@0
   528
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   529
		@pre 			TRegistryData_UpdateDllData_TransitionValidator is fully constructed.
sl@0
   530
		@post			No change to the iUTContext class.
sl@0
   531
	*/
sl@0
   532
	virtual inline TBool ValidatePreConditions();
sl@0
   533
sl@0
   534
	/**
sl@0
   535
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   536
		Intended Usage	:	Implemented by the developer to check the
sl@0
   537
						end state of the transition behaviour.
sl@0
   538
						When overriding, if the transition calls an asynchronous function
sl@0
   539
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   540
						asynchronous function has been called and, secondly, after the 
sl@0
   541
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   542
						be used to distinguish between these two cases.
sl@0
   543
		Error Condition	: Invalid post-conditions.
sl@0
   544
		@since			7.0
sl@0
   545
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   546
						EAsyncCompleted if the function has completed.
sl@0
   547
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   548
		@pre 			TRegistryData_UpdateDllData_TransitionValidator is fully constructed.
sl@0
   549
		@post			No change to the iUTContext class.
sl@0
   550
	*/
sl@0
   551
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   552
	};	// TRegistryData_UpdateDllData_TransitionValidator
sl@0
   553
sl@0
   554
// ______________________________________________________________________________
sl@0
   555
//
sl@0
   556
/**
sl@0
   557
	@internalComponent
sl@0
   558
sl@0
   559
	Comments : Provide all the BuildIndexesUnit Test's specific
sl@0
   560
	validatation for the state of a transition before and after its execution.
sl@0
   561
	on the CRegistryData test class for a transition.
sl@0
   562
 */
sl@0
   563
class TRegistryData_BuildIndexes_TransitionValidator : public TTransitionValidator
sl@0
   564
	{
sl@0
   565
public:
sl@0
   566
	/**
sl@0
   567
		@fn				TRegistryData_BuildIndexes_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   568
		Intended Usage	:	
sl@0
   569
		@leave  		KErrNoMemory
sl@0
   570
		@since			7.0
sl@0
   571
		@param			aUTContext The context within which this transition is executing
sl@0
   572
	 */
sl@0
   573
	inline TRegistryData_BuildIndexes_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   574
sl@0
   575
	/**
sl@0
   576
		@fn				ValidatePreConditions()
sl@0
   577
		Intended Usage	: Implemented by the developer to check the
sl@0
   578
						end state of the transition behaviour.
sl@0
   579
		Error Condition	: Invalid pre-conditions
sl@0
   580
		@since			7.0
sl@0
   581
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   582
		@pre 			TRegistryData_BuildIndexes_TransitionValidator is fully constructed.
sl@0
   583
		@post			No change to the iUTContext class.
sl@0
   584
	*/
sl@0
   585
	virtual inline TBool ValidatePreConditions();
sl@0
   586
sl@0
   587
	/**
sl@0
   588
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   589
		Intended Usage	:	Implemented by the developer to check the
sl@0
   590
						end state of the transition behaviour.
sl@0
   591
						When overriding, if the transition calls an asynchronous function
sl@0
   592
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   593
						asynchronous function has been called and, secondly, after the 
sl@0
   594
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   595
						be used to distinguish between these two cases.
sl@0
   596
		Error Condition	: Invalid post-conditions.
sl@0
   597
		@since			7.0
sl@0
   598
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   599
						EAsyncCompleted if the function has completed.
sl@0
   600
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   601
		@pre 			TRegistryData_BuildIndexes_TransitionValidator is fully constructed.
sl@0
   602
		@post			No change to the iUTContext class.
sl@0
   603
	*/
sl@0
   604
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   605
	};	// TRegistryData_BuildIndexes_TransitionValidator
sl@0
   606
sl@0
   607
// ______________________________________________________________________________
sl@0
   608
//
sl@0
   609
/**
sl@0
   610
	@internalComponent
sl@0
   611
sl@0
   612
	Comments : Provide all the IndexedFindUnit Test's specific
sl@0
   613
	validatation for the state of a transition before and after its execution.
sl@0
   614
	on the CRegistryData test class for a transition.
sl@0
   615
 */
sl@0
   616
class TRegistryData_IndexedFind_TransitionValidator : public TTransitionValidator
sl@0
   617
	{
sl@0
   618
public:
sl@0
   619
	/**
sl@0
   620
		@fn				TRegistryData_IndexedFind_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   621
		Intended Usage	:	
sl@0
   622
		@leave  		KErrNoMemory
sl@0
   623
		@since			7.0
sl@0
   624
		@param			aUTContext The context within which this transition is executing
sl@0
   625
	 */
sl@0
   626
	inline TRegistryData_IndexedFind_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   627
sl@0
   628
	/**
sl@0
   629
		@fn				ValidatePreConditions()
sl@0
   630
		Intended Usage	: Implemented by the developer to check the
sl@0
   631
						end state of the transition behaviour.
sl@0
   632
		Error Condition	: Invalid pre-conditions
sl@0
   633
		@since			7.0
sl@0
   634
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   635
		@pre 			TRegistryData_IndexedFind_TransitionValidator is fully constructed.
sl@0
   636
		@post			No change to the iUTContext class.
sl@0
   637
	*/
sl@0
   638
	virtual inline TBool ValidatePreConditions();
sl@0
   639
sl@0
   640
	/**
sl@0
   641
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   642
		Intended Usage	:	Implemented by the developer to check the
sl@0
   643
						end state of the transition behaviour.
sl@0
   644
						When overriding, if the transition calls an asynchronous function
sl@0
   645
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   646
						asynchronous function has been called and, secondly, after the 
sl@0
   647
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   648
						be used to distinguish between these two cases.
sl@0
   649
		Error Condition	: Invalid post-conditions.
sl@0
   650
		@since			7.0
sl@0
   651
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   652
						EAsyncCompleted if the function has completed.
sl@0
   653
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   654
		@pre 			TRegistryData_IndexedFind_TransitionValidator is fully constructed.
sl@0
   655
		@post			No change to the iUTContext class.
sl@0
   656
	*/
sl@0
   657
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   658
	};	// TRegistryData_IndexedFind_TransitionValidator
sl@0
   659
sl@0
   660
// ______________________________________________________________________________
sl@0
   661
//
sl@0
   662
/**
sl@0
   663
	@internalComponent
sl@0
   664
sl@0
   665
	Comments : Provide all the RestoreUnit Test's specific
sl@0
   666
	validatation for the state of a transition before and after its execution.
sl@0
   667
	on the CRegistryData test class for a transition.
sl@0
   668
 */
sl@0
   669
class TRegistryData_Restore_TransitionValidator : public TTransitionValidator
sl@0
   670
	{
sl@0
   671
public:
sl@0
   672
	/**
sl@0
   673
		@fn				TRegistryData_Restore_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   674
		Intended Usage	:	
sl@0
   675
		@leave  		KErrNoMemory
sl@0
   676
		@since			7.0
sl@0
   677
		@param			aUTContext The context within which this transition is executing
sl@0
   678
	 */
sl@0
   679
	inline TRegistryData_Restore_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   680
sl@0
   681
	/**
sl@0
   682
		@fn				ValidatePreConditions()
sl@0
   683
		Intended Usage	: Implemented by the developer to check the
sl@0
   684
						end state of the transition behaviour.
sl@0
   685
		Error Condition	: Invalid pre-conditions
sl@0
   686
		@since			7.0
sl@0
   687
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   688
		@pre 			TRegistryData_Restore_TransitionValidator is fully constructed.
sl@0
   689
		@post			No change to the iUTContext class.
sl@0
   690
	*/
sl@0
   691
	virtual inline TBool ValidatePreConditions();
sl@0
   692
sl@0
   693
	/**
sl@0
   694
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   695
		Intended Usage	:	Implemented by the developer to check the
sl@0
   696
						end state of the transition behaviour.
sl@0
   697
						When overriding, if the transition calls an asynchronous function
sl@0
   698
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   699
						asynchronous function has been called and, secondly, after the 
sl@0
   700
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   701
						be used to distinguish between these two cases.
sl@0
   702
		Error Condition	: Invalid post-conditions.
sl@0
   703
		@since			7.0
sl@0
   704
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   705
						EAsyncCompleted if the function has completed.
sl@0
   706
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   707
		@pre 			TRegistryData_Restore_TransitionValidator is fully constructed.
sl@0
   708
		@post			No change to the iUTContext class.
sl@0
   709
	*/
sl@0
   710
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   711
	};	// TRegistryData_Restore_TransitionValidator
sl@0
   712
sl@0
   713
// ______________________________________________________________________________
sl@0
   714
//
sl@0
   715
/**
sl@0
   716
	@internalComponent
sl@0
   717
sl@0
   718
	Comments : Provide all the StoreUnit Test's specific
sl@0
   719
	validatation for the state of a transition before and after its execution.
sl@0
   720
	on the CRegistryData test class for a transition.
sl@0
   721
 */
sl@0
   722
class TRegistryData_Store_TransitionValidator : public TTransitionValidator
sl@0
   723
	{
sl@0
   724
public:
sl@0
   725
	/**
sl@0
   726
		@fn				TRegistryData_Store_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   727
		Intended Usage	:	
sl@0
   728
		@leave  		KErrNoMemory
sl@0
   729
		@since			7.0
sl@0
   730
		@param			aUTContext The context within which this transition is executing
sl@0
   731
	 */
sl@0
   732
	inline TRegistryData_Store_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   733
sl@0
   734
	/**
sl@0
   735
		@fn				ValidatePreConditions()
sl@0
   736
		Intended Usage	: Implemented by the developer to check the
sl@0
   737
						end state of the transition behaviour.
sl@0
   738
		Error Condition	: Invalid pre-conditions
sl@0
   739
		@since			7.0
sl@0
   740
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   741
		@pre 			TRegistryData_Store_TransitionValidator is fully constructed.
sl@0
   742
		@post			No change to the iUTContext class.
sl@0
   743
	*/
sl@0
   744
	virtual inline TBool ValidatePreConditions();
sl@0
   745
sl@0
   746
	/**
sl@0
   747
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   748
		Intended Usage	:	Implemented by the developer to check the
sl@0
   749
						end state of the transition behaviour.
sl@0
   750
						When overriding, if the transition calls an asynchronous function
sl@0
   751
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   752
						asynchronous function has been called and, secondly, after the 
sl@0
   753
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   754
						be used to distinguish between these two cases.
sl@0
   755
		Error Condition	: Invalid post-conditions.
sl@0
   756
		@since			7.0
sl@0
   757
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   758
						EAsyncCompleted if the function has completed.
sl@0
   759
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   760
		@pre 			TRegistryData_Store_TransitionValidator is fully constructed.
sl@0
   761
		@post			No change to the iUTContext class.
sl@0
   762
	*/
sl@0
   763
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   764
	};	// TRegistryData_Store_TransitionValidator
sl@0
   765
sl@0
   766
// ______________________________________________________________________________
sl@0
   767
//
sl@0
   768
/**
sl@0
   769
	@internalComponent
sl@0
   770
sl@0
   771
	Comments : Provide all the MatchOnUidUnit Test's specific
sl@0
   772
	validatation for the state of a transition before and after its execution.
sl@0
   773
	on the CRegistryData test class for a transition.
sl@0
   774
 */
sl@0
   775
class TRegistryData_MatchOnUid_TransitionValidator : public TTransitionValidator
sl@0
   776
	{
sl@0
   777
public:
sl@0
   778
	/**
sl@0
   779
		@fn				TRegistryData_MatchOnUid_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   780
		Intended Usage	:	
sl@0
   781
		@leave  		KErrNoMemory
sl@0
   782
		@since			7.0
sl@0
   783
		@param			aUTContext The context within which this transition is executing
sl@0
   784
	 */
sl@0
   785
	inline TRegistryData_MatchOnUid_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   786
sl@0
   787
	/**
sl@0
   788
		@fn				ValidatePreConditions()
sl@0
   789
		Intended Usage	: Implemented by the developer to check the
sl@0
   790
						end state of the transition behaviour.
sl@0
   791
		Error Condition	: Invalid pre-conditions
sl@0
   792
		@since			7.0
sl@0
   793
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   794
		@pre 			TRegistryData_MatchOnUid_TransitionValidator is fully constructed.
sl@0
   795
		@post			No change to the iUTContext class.
sl@0
   796
	*/
sl@0
   797
	virtual inline TBool ValidatePreConditions();
sl@0
   798
sl@0
   799
	/**
sl@0
   800
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   801
		Intended Usage	:	Implemented by the developer to check the
sl@0
   802
						end state of the transition behaviour.
sl@0
   803
						When overriding, if the transition calls an asynchronous function
sl@0
   804
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   805
						asynchronous function has been called and, secondly, after the 
sl@0
   806
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   807
						be used to distinguish between these two cases.
sl@0
   808
		Error Condition	: Invalid post-conditions.
sl@0
   809
		@since			7.0
sl@0
   810
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   811
						EAsyncCompleted if the function has completed.
sl@0
   812
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   813
		@pre 			TRegistryData_MatchOnUid_TransitionValidator is fully constructed.
sl@0
   814
		@post			No change to the iUTContext class.
sl@0
   815
	*/
sl@0
   816
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   817
	};	// TRegistryData_MatchOnUid_TransitionValidator
sl@0
   818
sl@0
   819
sl@0
   820
// ______________________________________________________________________________
sl@0
   821
//
sl@0
   822
/**
sl@0
   823
	@internalComponent
sl@0
   824
	
sl@0
   825
	Comments : Provide all the ConstructPolicyIndexLUnit Test's specific
sl@0
   826
	validatation for the state of a transition before and after its execution.
sl@0
   827
	on the CRegistryData test class for a transition.
sl@0
   828
 */
sl@0
   829
class TRegistryData_ConstructPolicyIndexL_TransitionValidator : public TTransitionValidator
sl@0
   830
	{
sl@0
   831
public:
sl@0
   832
	/**
sl@0
   833
		@fn				TRegistryData_ConstructPolicyIndexL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   834
		Intended Usage	:	
sl@0
   835
		@leave  		KErrNoMemory
sl@0
   836
		@since			7.0
sl@0
   837
		@param			aUTContext The context within which this transition is executing
sl@0
   838
	 */
sl@0
   839
	inline TRegistryData_ConstructPolicyIndexL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   840
sl@0
   841
	/**
sl@0
   842
		@fn				ValidatePreConditions()
sl@0
   843
		Intended Usage	: Implemented by the developer to check the
sl@0
   844
						end state of the transition behaviour.
sl@0
   845
		Error Condition	: Invalid pre-conditions
sl@0
   846
		@since			7.0
sl@0
   847
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   848
		@pre 			TRegistryData_ConstructPolicyIndexL_TransitionValidator is fully constructed.
sl@0
   849
		@post			No change to the iUTContext class.
sl@0
   850
	*/
sl@0
   851
	virtual inline TBool ValidatePreConditions();
sl@0
   852
sl@0
   853
	/**
sl@0
   854
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   855
		Intended Usage	:	Implemented by the developer to check the
sl@0
   856
						end state of the transition behaviour.
sl@0
   857
						When overriding, if the transition calls an asynchronous function
sl@0
   858
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   859
						asynchronous function has been called and, secondly, after the 
sl@0
   860
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   861
						be used to distinguish between these two cases.
sl@0
   862
		Error Condition	: Invalid post-conditions.
sl@0
   863
		@since			7.0
sl@0
   864
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   865
						EAsyncCompleted if the function has completed.
sl@0
   866
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   867
		@pre 			TRegistryData_ConstructPolicyIndexL_TransitionValidator is fully constructed.
sl@0
   868
		@post			No change to the iUTContext class.
sl@0
   869
	*/
sl@0
   870
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   871
	};	// TRegistryData_ConstructPolicyIndexL_TransitionValidator
sl@0
   872
sl@0
   873
// ______________________________________________________________________________
sl@0
   874
//
sl@0
   875
/**
sl@0
   876
	@internalComponent
sl@0
   877
sl@0
   878
	Comments : Provide all the SetPolicyObserverUnit Test's specific
sl@0
   879
	validatation for the state of a transition before and after its execution.
sl@0
   880
	on the CRegistryData test class for a transition.
sl@0
   881
 */
sl@0
   882
class TRegistryData_SetPolicyObserver_TransitionValidator : public TTransitionValidator
sl@0
   883
	{
sl@0
   884
public:
sl@0
   885
	/**
sl@0
   886
		@fn				TRegistryData_SetPolicyObserver_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   887
		Intended Usage	:	
sl@0
   888
		@leave  		KErrNoMemory
sl@0
   889
		@since			7.0
sl@0
   890
		@param			aUTContext The context within which this transition is executing
sl@0
   891
	 */
sl@0
   892
	inline TRegistryData_SetPolicyObserver_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   893
sl@0
   894
	/**
sl@0
   895
		@fn				ValidatePreConditions()
sl@0
   896
		Intended Usage	: Implemented by the developer to check the
sl@0
   897
						end state of the transition behaviour.
sl@0
   898
		Error Condition	: Invalid pre-conditions
sl@0
   899
		@since			7.0
sl@0
   900
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   901
		@pre 			TRegistryData_SetPolicyObserver_TransitionValidator is fully constructed.
sl@0
   902
		@post			No change to the iUTContext class.
sl@0
   903
	*/
sl@0
   904
	virtual inline TBool ValidatePreConditions();
sl@0
   905
sl@0
   906
	/**
sl@0
   907
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   908
		Intended Usage	:	Implemented by the developer to check the
sl@0
   909
						end state of the transition behaviour.
sl@0
   910
						When overriding, if the transition calls an asynchronous function
sl@0
   911
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   912
						asynchronous function has been called and, secondly, after the 
sl@0
   913
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   914
						be used to distinguish between these two cases.
sl@0
   915
		Error Condition	: Invalid post-conditions.
sl@0
   916
		@since			7.0
sl@0
   917
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   918
						EAsyncCompleted if the function has completed.
sl@0
   919
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   920
		@pre 			TRegistryData_SetPolicyObserver_TransitionValidator is fully constructed.
sl@0
   921
		@post			No change to the iUTContext class.
sl@0
   922
	*/
sl@0
   923
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   924
	};	// TRegistryData_SetPolicyObserver_TransitionValidator
sl@0
   925
sl@0
   926
// ______________________________________________________________________________
sl@0
   927
//
sl@0
   928
/**
sl@0
   929
	@internalComponent
sl@0
   930
sl@0
   931
	Comments : Provide all the GetSecondImplInfoUnit Test's specific
sl@0
   932
	validatation for the state of a transition before and after its execution.
sl@0
   933
	on the CRegistryData test class for a transition.
sl@0
   934
 */
sl@0
   935
class TRegistryData_GetSecondImplInfo_TransitionValidator : public TTransitionValidator
sl@0
   936
	{
sl@0
   937
public:
sl@0
   938
	/**
sl@0
   939
		@fn				TRegistryData_GetSecondImplInfo_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   940
		Intended Usage	:	
sl@0
   941
		@leave  		KErrNoMemory
sl@0
   942
		@since			7.0
sl@0
   943
		@param			aUTContext The context within which this transition is executing
sl@0
   944
	 */
sl@0
   945
	inline TRegistryData_GetSecondImplInfo_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   946
sl@0
   947
	/**
sl@0
   948
		@fn				ValidatePreConditions()
sl@0
   949
		Intended Usage	: Implemented by the developer to check the
sl@0
   950
						end state of the transition behaviour.
sl@0
   951
		Error Condition	: Invalid pre-conditions
sl@0
   952
		@since			7.0
sl@0
   953
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   954
		@pre 			TRegistryData_GetSecondImplInfo_TransitionValidator is fully constructed.
sl@0
   955
		@post			No change to the iUTContext class.
sl@0
   956
	*/
sl@0
   957
	virtual inline TBool ValidatePreConditions();
sl@0
   958
sl@0
   959
	/**
sl@0
   960
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   961
		Intended Usage	:	Implemented by the developer to check the
sl@0
   962
						end state of the transition behaviour.
sl@0
   963
						When overriding, if the transition calls an asynchronous function
sl@0
   964
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   965
						asynchronous function has been called and, secondly, after the 
sl@0
   966
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   967
						be used to distinguish between these two cases.
sl@0
   968
		Error Condition	: Invalid post-conditions.
sl@0
   969
		@since			7.0
sl@0
   970
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   971
						EAsyncCompleted if the function has completed.
sl@0
   972
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   973
		@pre 			TRegistryData_GetSecondImplInfo_TransitionValidator is fully constructed.
sl@0
   974
		@post			No change to the iUTContext class.
sl@0
   975
	*/
sl@0
   976
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   977
	};	// TRegistryData_GetSecondImplInfo_TransitionValidator
sl@0
   978
sl@0
   979
// ______________________________________________________________________________
sl@0
   980
//
sl@0
   981
/**
sl@0
   982
	@internalComponent
sl@0
   983
	
sl@0
   984
	Comments : Provide all the DiscoveriesBeginningUnit Test's specific
sl@0
   985
	validatation for the state of a transition before and after its execution.
sl@0
   986
	on the CRegistryData test class for a transition.
sl@0
   987
 */
sl@0
   988
class TRegistryData_DiscoveriesBeginning_TransitionValidator : public TTransitionValidator
sl@0
   989
	{
sl@0
   990
public:
sl@0
   991
	/**
sl@0
   992
		@fn				TRegistryData_DiscoveriesBeginning_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   993
		Intended Usage	:	
sl@0
   994
		@leave  		KErrNoMemory
sl@0
   995
		@since			7.0
sl@0
   996
		@param			aUTContext The context within which this transition is executing
sl@0
   997
	 */
sl@0
   998
	inline TRegistryData_DiscoveriesBeginning_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   999
sl@0
  1000
	/**
sl@0
  1001
		@fn				ValidatePreConditions()
sl@0
  1002
		Intended Usage	: Implemented by the developer to check the
sl@0
  1003
						end state of the transition behaviour.
sl@0
  1004
		Error Condition	: Invalid pre-conditions
sl@0
  1005
		@since			7.0
sl@0
  1006
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
  1007
		@pre 			TRegistryData_DiscoveriesBeginning_TransitionValidator is fully constructed.
sl@0
  1008
		@post			No change to the iUTContext class.
sl@0
  1009
	*/
sl@0
  1010
	virtual inline TBool ValidatePreConditions();
sl@0
  1011
sl@0
  1012
	/**
sl@0
  1013
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
  1014
		Intended Usage	:	Implemented by the developer to check the
sl@0
  1015
						end state of the transition behaviour.
sl@0
  1016
						When overriding, if the transition calls an asynchronous function
sl@0
  1017
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
  1018
						asynchronous function has been called and, secondly, after the 
sl@0
  1019
						asynchronous request has completed. The parameter aAsyncState can
sl@0
  1020
						be used to distinguish between these two cases.
sl@0
  1021
		Error Condition	: Invalid post-conditions.
sl@0
  1022
		@since			7.0
sl@0
  1023
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
  1024
						EAsyncCompleted if the function has completed.
sl@0
  1025
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
  1026
		@pre 			TRegistryData_DiscoveriesBeginning_TransitionValidator is fully constructed.
sl@0
  1027
		@post			No change to the iUTContext class.
sl@0
  1028
	*/
sl@0
  1029
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
  1030
	};	// TRegistryData_DiscoveriesBeginning_TransitionValidator
sl@0
  1031
sl@0
  1032
#include "RegistryDataTransitionValidation.inl"
sl@0
  1033
sl@0
  1034
#endif		// __REGISTRYDATATRANSITIONVALIDATION_H__