os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTransitionValidation.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTransitionValidation.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1034 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The definition of the validation classes for the CRegistryData transitions
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __REGISTRYDATATRANSITIONVALIDATION_H__
    1.22 +#define __REGISTRYDATATRANSITIONVALIDATION_H__
    1.23 +
    1.24 +#include "RegistryDataTransitions.h"
    1.25 +
    1.26 +// ______________________________________________________________________________
    1.27 +//
    1.28 +/**
    1.29 +	@internalComponent
    1.30 +
    1.31 +	Comments : Provide all the CreateAndDestroy Unit Test's specific
    1.32 +	validatation for the state of a transition before and after its execution.
    1.33 +	on the CRegistryData test class for a transition.
    1.34 + */
    1.35 +class TRegistryData_Ctor_TransitionValidator : public TTransitionValidator
    1.36 +	{
    1.37 +public:
    1.38 +	/**
    1.39 +		@fn				TRegistryData_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    1.40 +		Intended Usage	: Standard constructor.
    1.41 +		@leave  		KErrNoMemory
    1.42 +		@since			7.0
    1.43 +		@param			aUTContext The context within which this transition is executing
    1.44 +	 */
    1.45 +	inline TRegistryData_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    1.46 +
    1.47 +	/**
    1.48 +		@fn				ValidatePreConditions()
    1.49 +		Intended Usage	: Implemented by the developer to check the
    1.50 +						end state of the transition behaviour.
    1.51 +		Error Condition	: Invalid pre-conditions
    1.52 +		@since			7.0
    1.53 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    1.54 +		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
    1.55 +		@post			No change to the iUTContext class.
    1.56 +	*/
    1.57 +	virtual inline TBool ValidatePreConditions();
    1.58 +
    1.59 +	/**
    1.60 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    1.61 +		Intended Usage	:	Implemented by the developer to check the
    1.62 +						end state of the transition behaviour.
    1.63 +						When overriding, if the transition calls an asynchronous function
    1.64 +						ValidatePostConditions will be called twice. Firstly, after the
    1.65 +						asynchronous function has been called and, secondly, after the 
    1.66 +						asynchronous request has completed. The parameter aAsyncState can
    1.67 +						be used to distinguish between these two cases.
    1.68 +		Error Condition	: Invalid post-conditions.
    1.69 +		@since			7.0
    1.70 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    1.71 +						EAsyncCompleted if the function has completed.
    1.72 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    1.73 +		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
    1.74 +		@post			No change to the iUTContext class.
    1.75 +	*/
    1.76 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    1.77 +	};	// TRegistryData_Ctor_TransitionValidator
    1.78 +
    1.79 +
    1.80 +// ______________________________________________________________________________
    1.81 +//
    1.82 +/**
    1.83 +	@internalComponent
    1.84 +
    1.85 +	Comments : Provide all the CreateAndDestroy Unit Test's specific
    1.86 +	validatation for the state of a transition before and after its execution.
    1.87 +	on the CRegistryData test class for a transition.
    1.88 + */
    1.89 +class TRegistryData_Dtor_TransitionValidator : public TTransitionValidator
    1.90 +	{
    1.91 +public:
    1.92 +	/**
    1.93 +		@fn				TRegistryData_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    1.94 +		Intended Usage	: Default constructor
    1.95 +		@leave  		KErrNoMemory
    1.96 +		@since			7.0
    1.97 +		@param			aUTContext The context within which this transition is executing
    1.98 +	 */
    1.99 +	inline TRegistryData_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
   1.100 +
   1.101 +	/**
   1.102 +		@fn				ValidatePreConditions()
   1.103 +		Intended Usage	: Implemented by the developer to check the
   1.104 +						end state of the transition behaviour.
   1.105 +		Error Condition	: Invalid pre-conditions
   1.106 +		@since			7.0
   1.107 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.108 +		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
   1.109 +		@post			No change to the iUTContext class.
   1.110 +	*/
   1.111 +	virtual inline TBool ValidatePreConditions();
   1.112 +
   1.113 +	/**
   1.114 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.115 +		Intended Usage	:	Implemented by the developer to check the
   1.116 +						end state of the transition behaviour.
   1.117 +						When overriding, if the transition calls an asynchronous function
   1.118 +						ValidatePostConditions will be called twice. Firstly, after the
   1.119 +						asynchronous function has been called and, secondly, after the 
   1.120 +						asynchronous request has completed. The parameter aAsyncState can
   1.121 +						be used to distinguish between these two cases.
   1.122 +		Error Condition	: Invalid post-conditions.
   1.123 +		@since			7.0
   1.124 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.125 +						EAsyncCompleted if the function has completed.
   1.126 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.127 +		@pre 			TRegistryData_Default_TransitionValidator is fully constructed.
   1.128 +		@post			No change to the iUTContext class.
   1.129 +	*/
   1.130 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.131 +	};	// TRegistryData_Dtor_TransitionValidator
   1.132 +
   1.133 +// ______________________________________________________________________________
   1.134 +//
   1.135 +/**
   1.136 +	@internalComponent
   1.137 +
   1.138 +	Comments : Provide all the AddDllDataLUnit Test's specific
   1.139 +	validatation for the state of a transition before and after its execution.
   1.140 +	on the CRegistryData test class for a transition.
   1.141 + */
   1.142 +class TRegistryData_AddDllDataL_TransitionValidator : public TTransitionValidator
   1.143 +	{
   1.144 +public:
   1.145 +	/**
   1.146 +		@fn				TRegistryData_AddDllDataL_TransitionValidator(CUnitTestContext& aUTContext)
   1.147 +		Intended Usage	:	
   1.148 +		@leave  		KErrNoMemory
   1.149 +		@since			7.0
   1.150 +		@param			aUTContext The context within which this transition is executing
   1.151 +	 */
   1.152 +	inline TRegistryData_AddDllDataL_TransitionValidator(CUnitTestContext& aUTContext);
   1.153 +
   1.154 +	/**
   1.155 +		@fn				ValidatePreConditions()
   1.156 +		Intended Usage	: Implemented by the developer to check the
   1.157 +						end state of the transition behaviour.
   1.158 +		Error Condition	: Invalid pre-conditions
   1.159 +		@since			7.0
   1.160 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.161 +		@pre 			TRegistryData_AddDllDataL_TransitionValidator is fully constructed.
   1.162 +		@post			No change to the iUTContext class.
   1.163 +	*/
   1.164 +	virtual inline TBool ValidatePreConditions();
   1.165 +
   1.166 +	/**
   1.167 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.168 +		Intended Usage	:	Implemented by the developer to check the
   1.169 +						end state of the transition behaviour.
   1.170 +						When overriding, if the transition calls an asynchronous function
   1.171 +						ValidatePostConditions will be called twice. Firstly, after the
   1.172 +						asynchronous function has been called and, secondly, after the 
   1.173 +						asynchronous request has completed. The parameter aAsyncState can
   1.174 +						be used to distinguish between these two cases.
   1.175 +		Error Condition	: Invalid post-conditions.
   1.176 +		@since			7.0
   1.177 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.178 +						EAsyncCompleted if the function has completed.
   1.179 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.180 +		@pre 			TRegistryData_AddDllDataL_TransitionValidator is fully constructed.
   1.181 +		@post			No change to the iUTContext class.
   1.182 +	*/
   1.183 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.184 +	};	// TRegistryData_AddDllDataL_TransitionValidator
   1.185 +
   1.186 +// ______________________________________________________________________________
   1.187 +//
   1.188 +/**
   1.189 +	@internalComponent
   1.190 +
   1.191 +	Comments : Provide all the AddDllDataLUnit Test's specific
   1.192 +	validatation for the state of a transition before and after its execution.
   1.193 +	on the CRegistryData test class for a transition.
   1.194 + */
   1.195 +class TRegistryData_ListImplementations_TransitionValidator : public TTransitionValidator
   1.196 +	{
   1.197 +public:
   1.198 +	/**
   1.199 +		@fn				TRegistryData_ListImplementations_TransitionValidator(CUnitTestContext& aUTContext)
   1.200 +		Intended Usage	:	
   1.201 +		@leave  		KErrNoMemory
   1.202 +		@since			7.0
   1.203 +		@param			aUTContext The context within which this transition is executing
   1.204 +	 */
   1.205 +	inline TRegistryData_ListImplementations_TransitionValidator(CUnitTestContext& aUTContext);
   1.206 +
   1.207 +	/**
   1.208 +		@fn				ValidatePreConditions()
   1.209 +		Intended Usage	: Implemented by the developer to check the
   1.210 +						end state of the transition behaviour.
   1.211 +		Error Condition	: Invalid pre-conditions
   1.212 +		@since			7.0
   1.213 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.214 +		@pre 			TRegistryData_ListImplementations_TransitionValidator is fully constructed.
   1.215 +		@post			No change to the iUTContext class.
   1.216 +	*/
   1.217 +	virtual inline TBool ValidatePreConditions();
   1.218 +
   1.219 +	/**
   1.220 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.221 +		Intended Usage	:	Implemented by the developer to check the
   1.222 +						end state of the transition behaviour.
   1.223 +						When overriding, if the transition calls an asynchronous function
   1.224 +						ValidatePostConditions will be called twice. Firstly, after the
   1.225 +						asynchronous function has been called and, secondly, after the 
   1.226 +						asynchronous request has completed. The parameter aAsyncState can
   1.227 +						be used to distinguish between these two cases.
   1.228 +		Error Condition	: Invalid post-conditions.
   1.229 +		@since			7.0
   1.230 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.231 +						EAsyncCompleted if the function has completed.
   1.232 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.233 +		@pre 			TRegistryData_ListImplementations_TransitionValidator is fully constructed.
   1.234 +		@post			No change to the iUTContext class.
   1.235 +	*/
   1.236 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.237 +	};	// TRegistryData_ListImplementations_TransitionValidator
   1.238 +
   1.239 +// ______________________________________________________________________________
   1.240 +//
   1.241 +/**
   1.242 +	@internalComponent
   1.243 + 
   1.244 +	Comments : Provide all the GetImplementationInformationUnit Test's specific
   1.245 +	validatation for the state of a transition before and after its execution.
   1.246 +	on the CRegistryData test class for a transition.
   1.247 + */
   1.248 +class TRegistryData_GetImplementationInformation_TransitionValidator : public TTransitionValidator
   1.249 +	{
   1.250 +public:
   1.251 +	/**
   1.252 +		@fn				TRegistryData_GetImplementationInformation_TransitionValidator(CUnitTestContext& aUTContext)
   1.253 +		Intended Usage	:	
   1.254 +		@leave  		KErrNoMemory
   1.255 +		@since			7.0
   1.256 +		@param			aUTContext The context within which this transition is executing
   1.257 +	 */
   1.258 +	inline TRegistryData_GetImplementationInformation_TransitionValidator(CUnitTestContext& aUTContext);
   1.259 +
   1.260 +	/**
   1.261 +		@fn				ValidatePreConditions()
   1.262 +		Intended Usage	: Implemented by the developer to check the
   1.263 +						end state of the transition behaviour.
   1.264 +		Error Condition	: Invalid pre-conditions
   1.265 +		@since			7.0
   1.266 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.267 +		@pre 			TRegistryData_GetImplementationInformation_TransitionValidator is fully constructed.
   1.268 +		@post			No change to the iUTContext class.
   1.269 +	*/
   1.270 +	virtual inline TBool ValidatePreConditions();
   1.271 +
   1.272 +	/**
   1.273 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.274 +		Intended Usage	:	Implemented by the developer to check the
   1.275 +						end state of the transition behaviour.
   1.276 +						When overriding, if the transition calls an asynchronous function
   1.277 +						ValidatePostConditions will be called twice. Firstly, after the
   1.278 +						asynchronous function has been called and, secondly, after the 
   1.279 +						asynchronous request has completed. The parameter aAsyncState can
   1.280 +						be used to distinguish between these two cases.
   1.281 +		Error Condition	: Invalid post-conditions.
   1.282 +		@since			7.0
   1.283 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.284 +						EAsyncCompleted if the function has completed.
   1.285 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.286 +		@pre 			TRegistryData_GetImplementationInformation_TransitionValidator is fully constructed.
   1.287 +		@post			No change to the iUTContext class.
   1.288 +	*/
   1.289 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.290 +	};	// TRegistryData_GetImplementationInformation_TransitionValidator
   1.291 +
   1.292 +// ______________________________________________________________________________
   1.293 +//
   1.294 +/**
   1.295 +	@internalComponent
   1.296 + 
   1.297 +	Comments : Provide all the IsRegisteredWithDateUnit Test's specific
   1.298 +	validatation for the state of a transition before and after its execution.
   1.299 +	on the CRegistryData test class for a transition.
   1.300 + */
   1.301 +class TRegistryData_IsRegisteredWithDate_TransitionValidator : public TTransitionValidator
   1.302 +	{
   1.303 +public:
   1.304 +	/**
   1.305 +		@fn				TRegistryData_IsRegisteredWithDate_TransitionValidator(CUnitTestContext& aUTContext)
   1.306 +		Intended Usage	:	
   1.307 +		@leave  		KErrNoMemory
   1.308 +		@since			7.0
   1.309 +		@param			aUTContext The context within which this transition is executing
   1.310 +	 */
   1.311 +	inline TRegistryData_IsRegisteredWithDate_TransitionValidator(CUnitTestContext& aUTContext);
   1.312 +
   1.313 +	/**
   1.314 +		@fn				ValidatePreConditions()
   1.315 +		Intended Usage	: Implemented by the developer to check the
   1.316 +						end state of the transition behaviour.
   1.317 +		Error Condition	: Invalid pre-conditions
   1.318 +		@since			7.0
   1.319 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.320 +		@pre 			TRegistryData_IsRegisteredWithDate_TransitionValidator is fully constructed.
   1.321 +		@post			No change to the iUTContext class.
   1.322 +	*/
   1.323 +	virtual inline TBool ValidatePreConditions();
   1.324 +
   1.325 +	/**
   1.326 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.327 +		Intended Usage	:	Implemented by the developer to check the
   1.328 +						end state of the transition behaviour.
   1.329 +						When overriding, if the transition calls an asynchronous function
   1.330 +						ValidatePostConditions will be called twice. Firstly, after the
   1.331 +						asynchronous function has been called and, secondly, after the 
   1.332 +						asynchronous request has completed. The parameter aAsyncState can
   1.333 +						be used to distinguish between these two cases.
   1.334 +		Error Condition	: Invalid post-conditions.
   1.335 +		@since			7.0
   1.336 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.337 +						EAsyncCompleted if the function has completed.
   1.338 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.339 +		@pre 			TRegistryData_IsRegisteredWithDate_TransitionValidator is fully constructed.
   1.340 +		@post			No change to the iUTContext class.
   1.341 +	*/
   1.342 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.343 +	};	// TRegistryData_IsRegisteredWithDate_TransitionValidator
   1.344 +
   1.345 +// ______________________________________________________________________________
   1.346 +//
   1.347 +/**
   1.348 +	@internalComponent
   1.349 + 
   1.350 +	Comments : Provide all the PersistNowUnit Test's specific
   1.351 +	validatation for the state of a transition before and after its execution.
   1.352 +	on the CRegistryData test class for a transition.
   1.353 + */
   1.354 +class TRegistryData_PersistNow_TransitionValidator : public TTransitionValidator
   1.355 +	{
   1.356 +public:
   1.357 +	/**
   1.358 +		@fn				TRegistryData_PersistNow_TransitionValidator(CUnitTestContext& aUTContext)
   1.359 +		Intended Usage	:	
   1.360 +		@leave  		KErrNoMemory
   1.361 +		@since			7.0
   1.362 +		@param			aUTContext The context within which this transition is executing
   1.363 +	 */
   1.364 +	inline TRegistryData_PersistNow_TransitionValidator(CUnitTestContext& aUTContext);
   1.365 +
   1.366 +	/**
   1.367 +		@fn				ValidatePreConditions()
   1.368 +		Intended Usage	: Implemented by the developer to check the
   1.369 +						end state of the transition behaviour.
   1.370 +		Error Condition	: Invalid pre-conditions
   1.371 +		@since			7.0
   1.372 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.373 +		@pre 			TRegistryData_PersistNow_TransitionValidator is fully constructed.
   1.374 +		@post			No change to the iUTContext class.
   1.375 +	*/
   1.376 +	virtual inline TBool ValidatePreConditions();
   1.377 +
   1.378 +	/**
   1.379 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.380 +		Intended Usage	:	Implemented by the developer to check the
   1.381 +						end state of the transition behaviour.
   1.382 +						When overriding, if the transition calls an asynchronous function
   1.383 +						ValidatePostConditions will be called twice. Firstly, after the
   1.384 +						asynchronous function has been called and, secondly, after the 
   1.385 +						asynchronous request has completed. The parameter aAsyncState can
   1.386 +						be used to distinguish between these two cases.
   1.387 +		Error Condition	: Invalid post-conditions.
   1.388 +		@since			7.0
   1.389 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.390 +						EAsyncCompleted if the function has completed.
   1.391 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.392 +		@pre 			TRegistryData_PersistNow_TransitionValidator is fully constructed.
   1.393 +		@post			No change to the iUTContext class.
   1.394 +	*/
   1.395 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.396 +	};	// TRegistryData_PersistNow_TransitionValidator
   1.397 +
   1.398 +// ______________________________________________________________________________
   1.399 +//
   1.400 +/**
   1.401 +	@internalComponent
   1.402 +
   1.403 +	Comments : Provide all the TemporaryUninstallUnit Test's specific
   1.404 +	validatation for the state of a transition before and after its execution.
   1.405 +	on the CRegistryData test class for a transition.
   1.406 + */
   1.407 +class TRegistryData_TemporaryUninstall_TransitionValidator : public TTransitionValidator
   1.408 +	{
   1.409 +public:
   1.410 +	/**
   1.411 +		@fn				TRegistryData_TemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext)
   1.412 +		Intended Usage	:	
   1.413 +		@leave  		KErrNoMemory
   1.414 +		@since			7.0
   1.415 +		@param			aUTContext The context within which this transition is executing
   1.416 +	 */
   1.417 +	inline TRegistryData_TemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext);
   1.418 +
   1.419 +	/**
   1.420 +		@fn				ValidatePreConditions()
   1.421 +		Intended Usage	: Implemented by the developer to check the
   1.422 +						end state of the transition behaviour.
   1.423 +		Error Condition	: Invalid pre-conditions
   1.424 +		@since			7.0
   1.425 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.426 +		@pre 			TRegistryData_TemporaryUninstall_TransitionValidator is fully constructed.
   1.427 +		@post			No change to the iUTContext class.
   1.428 +	*/
   1.429 +	virtual inline TBool ValidatePreConditions();
   1.430 +
   1.431 +	/**
   1.432 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.433 +		Intended Usage	:	Implemented by the developer to check the
   1.434 +						end state of the transition behaviour.
   1.435 +						When overriding, if the transition calls an asynchronous function
   1.436 +						ValidatePostConditions will be called twice. Firstly, after the
   1.437 +						asynchronous function has been called and, secondly, after the 
   1.438 +						asynchronous request has completed. The parameter aAsyncState can
   1.439 +						be used to distinguish between these two cases.
   1.440 +		Error Condition	: Invalid post-conditions.
   1.441 +		@since			7.0
   1.442 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.443 +						EAsyncCompleted if the function has completed.
   1.444 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.445 +		@pre 			TRegistryData_TemporaryUninstall_TransitionValidator is fully constructed.
   1.446 +		@post			No change to the iUTContext class.
   1.447 +	*/
   1.448 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.449 +	};	// TRegistryData_TemporaryUninstall_TransitionValidator
   1.450 +
   1.451 +// ______________________________________________________________________________
   1.452 +//
   1.453 +/**
   1.454 +	@internalComponent
   1.455 +
   1.456 +	Comments : Provide all the UndoTemporaryUninstallUnit Test's specific
   1.457 +	validatation for the state of a transition before and after its execution.
   1.458 +	on the CRegistryData test class for a transition.
   1.459 + */
   1.460 +class TRegistryData_UndoTemporaryUninstall_TransitionValidator : public TTransitionValidator
   1.461 +	{
   1.462 +public:
   1.463 +	/**
   1.464 +		@fn				TRegistryData_UndoTemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext)
   1.465 +		Intended Usage	:	
   1.466 +		@leave  		KErrNoMemory
   1.467 +		@since			7.0
   1.468 +		@param			aUTContext The context within which this transition is executing
   1.469 +	 */
   1.470 +	inline TRegistryData_UndoTemporaryUninstall_TransitionValidator(CUnitTestContext& aUTContext);
   1.471 +
   1.472 +	/**
   1.473 +		@fn				ValidatePreConditions()
   1.474 +		Intended Usage	: Implemented by the developer to check the
   1.475 +						end state of the transition behaviour.
   1.476 +		Error Condition	: Invalid pre-conditions
   1.477 +		@since			7.0
   1.478 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.479 +		@pre 			TRegistryData_UndoTemporaryUninstall_TransitionValidator is fully constructed.
   1.480 +		@post			No change to the iUTContext class.
   1.481 +	*/
   1.482 +	virtual inline TBool ValidatePreConditions();
   1.483 +
   1.484 +	/**
   1.485 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.486 +		Intended Usage	:	Implemented by the developer to check the
   1.487 +						end state of the transition behaviour.
   1.488 +						When overriding, if the transition calls an asynchronous function
   1.489 +						ValidatePostConditions will be called twice. Firstly, after the
   1.490 +						asynchronous function has been called and, secondly, after the 
   1.491 +						asynchronous request has completed. The parameter aAsyncState can
   1.492 +						be used to distinguish between these two cases.
   1.493 +		Error Condition	: Invalid post-conditions.
   1.494 +		@since			7.0
   1.495 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.496 +						EAsyncCompleted if the function has completed.
   1.497 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.498 +		@pre 			TRegistryData_UndoTemporaryUninstall_TransitionValidator is fully constructed.
   1.499 +		@post			No change to the iUTContext class.
   1.500 +	*/
   1.501 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.502 +	};	// TRegistryData_UndoTemporaryUninstall_TransitionValidator
   1.503 +
   1.504 +// ______________________________________________________________________________
   1.505 +//
   1.506 +/**
   1.507 +	@internalComponent
   1.508 +
   1.509 +	Comments : Provide all the UpdateDllDataUnit Test's specific
   1.510 +	validatation for the state of a transition before and after its execution.
   1.511 +	on the CRegistryData test class for a transition.
   1.512 + */
   1.513 +class TRegistryData_UpdateDllData_TransitionValidator : public TTransitionValidator
   1.514 +	{
   1.515 +public:
   1.516 +	/**
   1.517 +		@fn				TRegistryData_UpdateDllData_TransitionValidator(CUnitTestContext& aUTContext)
   1.518 +		Intended Usage	:	
   1.519 +		@leave  		KErrNoMemory
   1.520 +		@since			7.0
   1.521 +		@param			aUTContext The context within which this transition is executing
   1.522 +	 */
   1.523 +	inline TRegistryData_UpdateDllData_TransitionValidator(CUnitTestContext& aUTContext);
   1.524 +
   1.525 +	/**
   1.526 +		@fn				ValidatePreConditions()
   1.527 +		Intended Usage	: Implemented by the developer to check the
   1.528 +						end state of the transition behaviour.
   1.529 +		Error Condition	: Invalid pre-conditions
   1.530 +		@since			7.0
   1.531 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.532 +		@pre 			TRegistryData_UpdateDllData_TransitionValidator is fully constructed.
   1.533 +		@post			No change to the iUTContext class.
   1.534 +	*/
   1.535 +	virtual inline TBool ValidatePreConditions();
   1.536 +
   1.537 +	/**
   1.538 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.539 +		Intended Usage	:	Implemented by the developer to check the
   1.540 +						end state of the transition behaviour.
   1.541 +						When overriding, if the transition calls an asynchronous function
   1.542 +						ValidatePostConditions will be called twice. Firstly, after the
   1.543 +						asynchronous function has been called and, secondly, after the 
   1.544 +						asynchronous request has completed. The parameter aAsyncState can
   1.545 +						be used to distinguish between these two cases.
   1.546 +		Error Condition	: Invalid post-conditions.
   1.547 +		@since			7.0
   1.548 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.549 +						EAsyncCompleted if the function has completed.
   1.550 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.551 +		@pre 			TRegistryData_UpdateDllData_TransitionValidator is fully constructed.
   1.552 +		@post			No change to the iUTContext class.
   1.553 +	*/
   1.554 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.555 +	};	// TRegistryData_UpdateDllData_TransitionValidator
   1.556 +
   1.557 +// ______________________________________________________________________________
   1.558 +//
   1.559 +/**
   1.560 +	@internalComponent
   1.561 +
   1.562 +	Comments : Provide all the BuildIndexesUnit Test's specific
   1.563 +	validatation for the state of a transition before and after its execution.
   1.564 +	on the CRegistryData test class for a transition.
   1.565 + */
   1.566 +class TRegistryData_BuildIndexes_TransitionValidator : public TTransitionValidator
   1.567 +	{
   1.568 +public:
   1.569 +	/**
   1.570 +		@fn				TRegistryData_BuildIndexes_TransitionValidator(CUnitTestContext& aUTContext)
   1.571 +		Intended Usage	:	
   1.572 +		@leave  		KErrNoMemory
   1.573 +		@since			7.0
   1.574 +		@param			aUTContext The context within which this transition is executing
   1.575 +	 */
   1.576 +	inline TRegistryData_BuildIndexes_TransitionValidator(CUnitTestContext& aUTContext);
   1.577 +
   1.578 +	/**
   1.579 +		@fn				ValidatePreConditions()
   1.580 +		Intended Usage	: Implemented by the developer to check the
   1.581 +						end state of the transition behaviour.
   1.582 +		Error Condition	: Invalid pre-conditions
   1.583 +		@since			7.0
   1.584 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.585 +		@pre 			TRegistryData_BuildIndexes_TransitionValidator is fully constructed.
   1.586 +		@post			No change to the iUTContext class.
   1.587 +	*/
   1.588 +	virtual inline TBool ValidatePreConditions();
   1.589 +
   1.590 +	/**
   1.591 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.592 +		Intended Usage	:	Implemented by the developer to check the
   1.593 +						end state of the transition behaviour.
   1.594 +						When overriding, if the transition calls an asynchronous function
   1.595 +						ValidatePostConditions will be called twice. Firstly, after the
   1.596 +						asynchronous function has been called and, secondly, after the 
   1.597 +						asynchronous request has completed. The parameter aAsyncState can
   1.598 +						be used to distinguish between these two cases.
   1.599 +		Error Condition	: Invalid post-conditions.
   1.600 +		@since			7.0
   1.601 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.602 +						EAsyncCompleted if the function has completed.
   1.603 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.604 +		@pre 			TRegistryData_BuildIndexes_TransitionValidator is fully constructed.
   1.605 +		@post			No change to the iUTContext class.
   1.606 +	*/
   1.607 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.608 +	};	// TRegistryData_BuildIndexes_TransitionValidator
   1.609 +
   1.610 +// ______________________________________________________________________________
   1.611 +//
   1.612 +/**
   1.613 +	@internalComponent
   1.614 +
   1.615 +	Comments : Provide all the IndexedFindUnit Test's specific
   1.616 +	validatation for the state of a transition before and after its execution.
   1.617 +	on the CRegistryData test class for a transition.
   1.618 + */
   1.619 +class TRegistryData_IndexedFind_TransitionValidator : public TTransitionValidator
   1.620 +	{
   1.621 +public:
   1.622 +	/**
   1.623 +		@fn				TRegistryData_IndexedFind_TransitionValidator(CUnitTestContext& aUTContext)
   1.624 +		Intended Usage	:	
   1.625 +		@leave  		KErrNoMemory
   1.626 +		@since			7.0
   1.627 +		@param			aUTContext The context within which this transition is executing
   1.628 +	 */
   1.629 +	inline TRegistryData_IndexedFind_TransitionValidator(CUnitTestContext& aUTContext);
   1.630 +
   1.631 +	/**
   1.632 +		@fn				ValidatePreConditions()
   1.633 +		Intended Usage	: Implemented by the developer to check the
   1.634 +						end state of the transition behaviour.
   1.635 +		Error Condition	: Invalid pre-conditions
   1.636 +		@since			7.0
   1.637 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.638 +		@pre 			TRegistryData_IndexedFind_TransitionValidator is fully constructed.
   1.639 +		@post			No change to the iUTContext class.
   1.640 +	*/
   1.641 +	virtual inline TBool ValidatePreConditions();
   1.642 +
   1.643 +	/**
   1.644 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.645 +		Intended Usage	:	Implemented by the developer to check the
   1.646 +						end state of the transition behaviour.
   1.647 +						When overriding, if the transition calls an asynchronous function
   1.648 +						ValidatePostConditions will be called twice. Firstly, after the
   1.649 +						asynchronous function has been called and, secondly, after the 
   1.650 +						asynchronous request has completed. The parameter aAsyncState can
   1.651 +						be used to distinguish between these two cases.
   1.652 +		Error Condition	: Invalid post-conditions.
   1.653 +		@since			7.0
   1.654 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.655 +						EAsyncCompleted if the function has completed.
   1.656 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.657 +		@pre 			TRegistryData_IndexedFind_TransitionValidator is fully constructed.
   1.658 +		@post			No change to the iUTContext class.
   1.659 +	*/
   1.660 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.661 +	};	// TRegistryData_IndexedFind_TransitionValidator
   1.662 +
   1.663 +// ______________________________________________________________________________
   1.664 +//
   1.665 +/**
   1.666 +	@internalComponent
   1.667 +
   1.668 +	Comments : Provide all the RestoreUnit Test's specific
   1.669 +	validatation for the state of a transition before and after its execution.
   1.670 +	on the CRegistryData test class for a transition.
   1.671 + */
   1.672 +class TRegistryData_Restore_TransitionValidator : public TTransitionValidator
   1.673 +	{
   1.674 +public:
   1.675 +	/**
   1.676 +		@fn				TRegistryData_Restore_TransitionValidator(CUnitTestContext& aUTContext)
   1.677 +		Intended Usage	:	
   1.678 +		@leave  		KErrNoMemory
   1.679 +		@since			7.0
   1.680 +		@param			aUTContext The context within which this transition is executing
   1.681 +	 */
   1.682 +	inline TRegistryData_Restore_TransitionValidator(CUnitTestContext& aUTContext);
   1.683 +
   1.684 +	/**
   1.685 +		@fn				ValidatePreConditions()
   1.686 +		Intended Usage	: Implemented by the developer to check the
   1.687 +						end state of the transition behaviour.
   1.688 +		Error Condition	: Invalid pre-conditions
   1.689 +		@since			7.0
   1.690 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.691 +		@pre 			TRegistryData_Restore_TransitionValidator is fully constructed.
   1.692 +		@post			No change to the iUTContext class.
   1.693 +	*/
   1.694 +	virtual inline TBool ValidatePreConditions();
   1.695 +
   1.696 +	/**
   1.697 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.698 +		Intended Usage	:	Implemented by the developer to check the
   1.699 +						end state of the transition behaviour.
   1.700 +						When overriding, if the transition calls an asynchronous function
   1.701 +						ValidatePostConditions will be called twice. Firstly, after the
   1.702 +						asynchronous function has been called and, secondly, after the 
   1.703 +						asynchronous request has completed. The parameter aAsyncState can
   1.704 +						be used to distinguish between these two cases.
   1.705 +		Error Condition	: Invalid post-conditions.
   1.706 +		@since			7.0
   1.707 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.708 +						EAsyncCompleted if the function has completed.
   1.709 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.710 +		@pre 			TRegistryData_Restore_TransitionValidator is fully constructed.
   1.711 +		@post			No change to the iUTContext class.
   1.712 +	*/
   1.713 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.714 +	};	// TRegistryData_Restore_TransitionValidator
   1.715 +
   1.716 +// ______________________________________________________________________________
   1.717 +//
   1.718 +/**
   1.719 +	@internalComponent
   1.720 +
   1.721 +	Comments : Provide all the StoreUnit Test's specific
   1.722 +	validatation for the state of a transition before and after its execution.
   1.723 +	on the CRegistryData test class for a transition.
   1.724 + */
   1.725 +class TRegistryData_Store_TransitionValidator : public TTransitionValidator
   1.726 +	{
   1.727 +public:
   1.728 +	/**
   1.729 +		@fn				TRegistryData_Store_TransitionValidator(CUnitTestContext& aUTContext)
   1.730 +		Intended Usage	:	
   1.731 +		@leave  		KErrNoMemory
   1.732 +		@since			7.0
   1.733 +		@param			aUTContext The context within which this transition is executing
   1.734 +	 */
   1.735 +	inline TRegistryData_Store_TransitionValidator(CUnitTestContext& aUTContext);
   1.736 +
   1.737 +	/**
   1.738 +		@fn				ValidatePreConditions()
   1.739 +		Intended Usage	: Implemented by the developer to check the
   1.740 +						end state of the transition behaviour.
   1.741 +		Error Condition	: Invalid pre-conditions
   1.742 +		@since			7.0
   1.743 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.744 +		@pre 			TRegistryData_Store_TransitionValidator is fully constructed.
   1.745 +		@post			No change to the iUTContext class.
   1.746 +	*/
   1.747 +	virtual inline TBool ValidatePreConditions();
   1.748 +
   1.749 +	/**
   1.750 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.751 +		Intended Usage	:	Implemented by the developer to check the
   1.752 +						end state of the transition behaviour.
   1.753 +						When overriding, if the transition calls an asynchronous function
   1.754 +						ValidatePostConditions will be called twice. Firstly, after the
   1.755 +						asynchronous function has been called and, secondly, after the 
   1.756 +						asynchronous request has completed. The parameter aAsyncState can
   1.757 +						be used to distinguish between these two cases.
   1.758 +		Error Condition	: Invalid post-conditions.
   1.759 +		@since			7.0
   1.760 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.761 +						EAsyncCompleted if the function has completed.
   1.762 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.763 +		@pre 			TRegistryData_Store_TransitionValidator is fully constructed.
   1.764 +		@post			No change to the iUTContext class.
   1.765 +	*/
   1.766 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.767 +	};	// TRegistryData_Store_TransitionValidator
   1.768 +
   1.769 +// ______________________________________________________________________________
   1.770 +//
   1.771 +/**
   1.772 +	@internalComponent
   1.773 +
   1.774 +	Comments : Provide all the MatchOnUidUnit Test's specific
   1.775 +	validatation for the state of a transition before and after its execution.
   1.776 +	on the CRegistryData test class for a transition.
   1.777 + */
   1.778 +class TRegistryData_MatchOnUid_TransitionValidator : public TTransitionValidator
   1.779 +	{
   1.780 +public:
   1.781 +	/**
   1.782 +		@fn				TRegistryData_MatchOnUid_TransitionValidator(CUnitTestContext& aUTContext)
   1.783 +		Intended Usage	:	
   1.784 +		@leave  		KErrNoMemory
   1.785 +		@since			7.0
   1.786 +		@param			aUTContext The context within which this transition is executing
   1.787 +	 */
   1.788 +	inline TRegistryData_MatchOnUid_TransitionValidator(CUnitTestContext& aUTContext);
   1.789 +
   1.790 +	/**
   1.791 +		@fn				ValidatePreConditions()
   1.792 +		Intended Usage	: Implemented by the developer to check the
   1.793 +						end state of the transition behaviour.
   1.794 +		Error Condition	: Invalid pre-conditions
   1.795 +		@since			7.0
   1.796 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.797 +		@pre 			TRegistryData_MatchOnUid_TransitionValidator is fully constructed.
   1.798 +		@post			No change to the iUTContext class.
   1.799 +	*/
   1.800 +	virtual inline TBool ValidatePreConditions();
   1.801 +
   1.802 +	/**
   1.803 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.804 +		Intended Usage	:	Implemented by the developer to check the
   1.805 +						end state of the transition behaviour.
   1.806 +						When overriding, if the transition calls an asynchronous function
   1.807 +						ValidatePostConditions will be called twice. Firstly, after the
   1.808 +						asynchronous function has been called and, secondly, after the 
   1.809 +						asynchronous request has completed. The parameter aAsyncState can
   1.810 +						be used to distinguish between these two cases.
   1.811 +		Error Condition	: Invalid post-conditions.
   1.812 +		@since			7.0
   1.813 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.814 +						EAsyncCompleted if the function has completed.
   1.815 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.816 +		@pre 			TRegistryData_MatchOnUid_TransitionValidator is fully constructed.
   1.817 +		@post			No change to the iUTContext class.
   1.818 +	*/
   1.819 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.820 +	};	// TRegistryData_MatchOnUid_TransitionValidator
   1.821 +
   1.822 +
   1.823 +// ______________________________________________________________________________
   1.824 +//
   1.825 +/**
   1.826 +	@internalComponent
   1.827 +	
   1.828 +	Comments : Provide all the ConstructPolicyIndexLUnit Test's specific
   1.829 +	validatation for the state of a transition before and after its execution.
   1.830 +	on the CRegistryData test class for a transition.
   1.831 + */
   1.832 +class TRegistryData_ConstructPolicyIndexL_TransitionValidator : public TTransitionValidator
   1.833 +	{
   1.834 +public:
   1.835 +	/**
   1.836 +		@fn				TRegistryData_ConstructPolicyIndexL_TransitionValidator(CUnitTestContext& aUTContext)
   1.837 +		Intended Usage	:	
   1.838 +		@leave  		KErrNoMemory
   1.839 +		@since			7.0
   1.840 +		@param			aUTContext The context within which this transition is executing
   1.841 +	 */
   1.842 +	inline TRegistryData_ConstructPolicyIndexL_TransitionValidator(CUnitTestContext& aUTContext);
   1.843 +
   1.844 +	/**
   1.845 +		@fn				ValidatePreConditions()
   1.846 +		Intended Usage	: Implemented by the developer to check the
   1.847 +						end state of the transition behaviour.
   1.848 +		Error Condition	: Invalid pre-conditions
   1.849 +		@since			7.0
   1.850 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.851 +		@pre 			TRegistryData_ConstructPolicyIndexL_TransitionValidator is fully constructed.
   1.852 +		@post			No change to the iUTContext class.
   1.853 +	*/
   1.854 +	virtual inline TBool ValidatePreConditions();
   1.855 +
   1.856 +	/**
   1.857 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.858 +		Intended Usage	:	Implemented by the developer to check the
   1.859 +						end state of the transition behaviour.
   1.860 +						When overriding, if the transition calls an asynchronous function
   1.861 +						ValidatePostConditions will be called twice. Firstly, after the
   1.862 +						asynchronous function has been called and, secondly, after the 
   1.863 +						asynchronous request has completed. The parameter aAsyncState can
   1.864 +						be used to distinguish between these two cases.
   1.865 +		Error Condition	: Invalid post-conditions.
   1.866 +		@since			7.0
   1.867 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.868 +						EAsyncCompleted if the function has completed.
   1.869 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.870 +		@pre 			TRegistryData_ConstructPolicyIndexL_TransitionValidator is fully constructed.
   1.871 +		@post			No change to the iUTContext class.
   1.872 +	*/
   1.873 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.874 +	};	// TRegistryData_ConstructPolicyIndexL_TransitionValidator
   1.875 +
   1.876 +// ______________________________________________________________________________
   1.877 +//
   1.878 +/**
   1.879 +	@internalComponent
   1.880 +
   1.881 +	Comments : Provide all the SetPolicyObserverUnit Test's specific
   1.882 +	validatation for the state of a transition before and after its execution.
   1.883 +	on the CRegistryData test class for a transition.
   1.884 + */
   1.885 +class TRegistryData_SetPolicyObserver_TransitionValidator : public TTransitionValidator
   1.886 +	{
   1.887 +public:
   1.888 +	/**
   1.889 +		@fn				TRegistryData_SetPolicyObserver_TransitionValidator(CUnitTestContext& aUTContext)
   1.890 +		Intended Usage	:	
   1.891 +		@leave  		KErrNoMemory
   1.892 +		@since			7.0
   1.893 +		@param			aUTContext The context within which this transition is executing
   1.894 +	 */
   1.895 +	inline TRegistryData_SetPolicyObserver_TransitionValidator(CUnitTestContext& aUTContext);
   1.896 +
   1.897 +	/**
   1.898 +		@fn				ValidatePreConditions()
   1.899 +		Intended Usage	: Implemented by the developer to check the
   1.900 +						end state of the transition behaviour.
   1.901 +		Error Condition	: Invalid pre-conditions
   1.902 +		@since			7.0
   1.903 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.904 +		@pre 			TRegistryData_SetPolicyObserver_TransitionValidator is fully constructed.
   1.905 +		@post			No change to the iUTContext class.
   1.906 +	*/
   1.907 +	virtual inline TBool ValidatePreConditions();
   1.908 +
   1.909 +	/**
   1.910 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.911 +		Intended Usage	:	Implemented by the developer to check the
   1.912 +						end state of the transition behaviour.
   1.913 +						When overriding, if the transition calls an asynchronous function
   1.914 +						ValidatePostConditions will be called twice. Firstly, after the
   1.915 +						asynchronous function has been called and, secondly, after the 
   1.916 +						asynchronous request has completed. The parameter aAsyncState can
   1.917 +						be used to distinguish between these two cases.
   1.918 +		Error Condition	: Invalid post-conditions.
   1.919 +		@since			7.0
   1.920 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.921 +						EAsyncCompleted if the function has completed.
   1.922 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.923 +		@pre 			TRegistryData_SetPolicyObserver_TransitionValidator is fully constructed.
   1.924 +		@post			No change to the iUTContext class.
   1.925 +	*/
   1.926 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.927 +	};	// TRegistryData_SetPolicyObserver_TransitionValidator
   1.928 +
   1.929 +// ______________________________________________________________________________
   1.930 +//
   1.931 +/**
   1.932 +	@internalComponent
   1.933 +
   1.934 +	Comments : Provide all the GetSecondImplInfoUnit Test's specific
   1.935 +	validatation for the state of a transition before and after its execution.
   1.936 +	on the CRegistryData test class for a transition.
   1.937 + */
   1.938 +class TRegistryData_GetSecondImplInfo_TransitionValidator : public TTransitionValidator
   1.939 +	{
   1.940 +public:
   1.941 +	/**
   1.942 +		@fn				TRegistryData_GetSecondImplInfo_TransitionValidator(CUnitTestContext& aUTContext)
   1.943 +		Intended Usage	:	
   1.944 +		@leave  		KErrNoMemory
   1.945 +		@since			7.0
   1.946 +		@param			aUTContext The context within which this transition is executing
   1.947 +	 */
   1.948 +	inline TRegistryData_GetSecondImplInfo_TransitionValidator(CUnitTestContext& aUTContext);
   1.949 +
   1.950 +	/**
   1.951 +		@fn				ValidatePreConditions()
   1.952 +		Intended Usage	: Implemented by the developer to check the
   1.953 +						end state of the transition behaviour.
   1.954 +		Error Condition	: Invalid pre-conditions
   1.955 +		@since			7.0
   1.956 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.957 +		@pre 			TRegistryData_GetSecondImplInfo_TransitionValidator is fully constructed.
   1.958 +		@post			No change to the iUTContext class.
   1.959 +	*/
   1.960 +	virtual inline TBool ValidatePreConditions();
   1.961 +
   1.962 +	/**
   1.963 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.964 +		Intended Usage	:	Implemented by the developer to check the
   1.965 +						end state of the transition behaviour.
   1.966 +						When overriding, if the transition calls an asynchronous function
   1.967 +						ValidatePostConditions will be called twice. Firstly, after the
   1.968 +						asynchronous function has been called and, secondly, after the 
   1.969 +						asynchronous request has completed. The parameter aAsyncState can
   1.970 +						be used to distinguish between these two cases.
   1.971 +		Error Condition	: Invalid post-conditions.
   1.972 +		@since			7.0
   1.973 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.974 +						EAsyncCompleted if the function has completed.
   1.975 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.976 +		@pre 			TRegistryData_GetSecondImplInfo_TransitionValidator is fully constructed.
   1.977 +		@post			No change to the iUTContext class.
   1.978 +	*/
   1.979 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.980 +	};	// TRegistryData_GetSecondImplInfo_TransitionValidator
   1.981 +
   1.982 +// ______________________________________________________________________________
   1.983 +//
   1.984 +/**
   1.985 +	@internalComponent
   1.986 +	
   1.987 +	Comments : Provide all the DiscoveriesBeginningUnit Test's specific
   1.988 +	validatation for the state of a transition before and after its execution.
   1.989 +	on the CRegistryData test class for a transition.
   1.990 + */
   1.991 +class TRegistryData_DiscoveriesBeginning_TransitionValidator : public TTransitionValidator
   1.992 +	{
   1.993 +public:
   1.994 +	/**
   1.995 +		@fn				TRegistryData_DiscoveriesBeginning_TransitionValidator(CUnitTestContext& aUTContext)
   1.996 +		Intended Usage	:	
   1.997 +		@leave  		KErrNoMemory
   1.998 +		@since			7.0
   1.999 +		@param			aUTContext The context within which this transition is executing
  1.1000 +	 */
  1.1001 +	inline TRegistryData_DiscoveriesBeginning_TransitionValidator(CUnitTestContext& aUTContext);
  1.1002 +
  1.1003 +	/**
  1.1004 +		@fn				ValidatePreConditions()
  1.1005 +		Intended Usage	: Implemented by the developer to check the
  1.1006 +						end state of the transition behaviour.
  1.1007 +		Error Condition	: Invalid pre-conditions
  1.1008 +		@since			7.0
  1.1009 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
  1.1010 +		@pre 			TRegistryData_DiscoveriesBeginning_TransitionValidator is fully constructed.
  1.1011 +		@post			No change to the iUTContext class.
  1.1012 +	*/
  1.1013 +	virtual inline TBool ValidatePreConditions();
  1.1014 +
  1.1015 +	/**
  1.1016 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
  1.1017 +		Intended Usage	:	Implemented by the developer to check the
  1.1018 +						end state of the transition behaviour.
  1.1019 +						When overriding, if the transition calls an asynchronous function
  1.1020 +						ValidatePostConditions will be called twice. Firstly, after the
  1.1021 +						asynchronous function has been called and, secondly, after the 
  1.1022 +						asynchronous request has completed. The parameter aAsyncState can
  1.1023 +						be used to distinguish between these two cases.
  1.1024 +		Error Condition	: Invalid post-conditions.
  1.1025 +		@since			7.0
  1.1026 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
  1.1027 +						EAsyncCompleted if the function has completed.
  1.1028 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
  1.1029 +		@pre 			TRegistryData_DiscoveriesBeginning_TransitionValidator is fully constructed.
  1.1030 +		@post			No change to the iUTContext class.
  1.1031 +	*/
  1.1032 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
  1.1033 +	};	// TRegistryData_DiscoveriesBeginning_TransitionValidator
  1.1034 +
  1.1035 +#include "RegistryDataTransitionValidation.inl"
  1.1036 +
  1.1037 +#endif		// __REGISTRYDATATRANSITIONVALIDATION_H__