os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionTransitionValidation.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definitions of the transition classes upon the CTransition class methods.
    15 // 
    16 //
    17 
    18 #ifndef __TRANSITIONTRANSITIONVALIDATION_H__
    19 #define __TRANSITIONTRANSITIONVALIDATION_H__
    20 
    21 #include "TransitionTransitions.h"
    22 
    23 // ______________________________________________________________________________
    24 //
    25 /**
    26 	@internalComponent
    27 
    28 	Comments : Provide all the CtorUnit Test's specific
    29 	validatation for the state of a transition before and after its execution.
    30 	on the CTransition test class for a transition.
    31  */
    32 class TTransition_Ctor_TransitionValidator : public TTransitionValidator
    33 	{
    34 public:
    35 	/**
    36 		@fn				TTransition_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    37 		Intended Usage	:	
    38 		@leave  		KErrNoMemory
    39 		@since			7.0
    40 		@param			aUTContext The context within which this transition is executing
    41 	 */
    42 	inline TTransition_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    43 
    44 	/**
    45 		@fn				ValidatePreConditions()
    46 		Intended Usage	: Implemented by the developer to check the
    47 						end state of the transition behaviour.
    48 		Error Condition	: Invalid pre-conditions
    49 		@since			7.0
    50 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    51 		@pre 			TTransition_Ctor_TransitionValidator is fully constructed.
    52 		@post			No change to the iUTContext class.
    53 	*/
    54 	virtual inline TBool ValidatePreConditions();
    55 
    56 	/**
    57 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    58 		Intended Usage	:	Implemented by the developer to check the
    59 						end state of the transition behaviour.
    60 						When overriding, if the transition calls an asynchronous function
    61 						ValidatePostConditions will be called twice. Firstly, after the
    62 						asynchronous function has been called and, secondly, after the 
    63 						asynchronous request has completed. The parameter aAsyncState can
    64 						be used to distinguish between these two cases.
    65 		Error Condition	: Invalid post-conditions.
    66 		@since			7.0
    67 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    68 						EAsyncCompleted if the function has completed.
    69 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    70 		@pre 			TTransition_Ctor_TransitionValidator is fully constructed.
    71 		@post			No change to the iUTContext class.
    72 	*/
    73 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    74 	};	// TTransition_Ctor_TransitionValidator
    75 
    76 // ______________________________________________________________________________
    77 //
    78 /**
    79 	@internalComponent
    80 
    81 	Comments : Provide all the DtorUnit Test's specific
    82 	validatation for the state of a transition before and after its execution.
    83 	on the CTransition test class for a transition.
    84  */
    85 class TTransition_Dtor_TransitionValidator : public TTransitionValidator
    86 	{
    87 public:
    88 	/**
    89 		@fn				TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    90 		Intended Usage	:	
    91 		@leave  		KErrNoMemory
    92 		@since			7.0
    93 		@param			aUTContext The context within which this transition is executing
    94 	 */
    95 	inline TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    96 
    97 	/**
    98 		@fn				ValidatePreConditions()
    99 		Intended Usage	: Implemented by the developer to check the
   100 						end state of the transition behaviour.
   101 		Error Condition	: Invalid pre-conditions
   102 		@since			7.0
   103 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   104 		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
   105 		@post			No change to the iUTContext class.
   106 	*/
   107 	virtual inline TBool ValidatePreConditions();
   108 
   109 	/**
   110 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   111 		Intended Usage	:	Implemented by the developer to check the
   112 						end state of the transition behaviour.
   113 						When overriding, if the transition calls an asynchronous function
   114 						ValidatePostConditions will be called twice. Firstly, after the
   115 						asynchronous function has been called and, secondly, after the 
   116 						asynchronous request has completed. The parameter aAsyncState can
   117 						be used to distinguish between these two cases.
   118 		Error Condition	: Invalid post-conditions.
   119 		@since			7.0
   120 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   121 						EAsyncCompleted if the function has completed.
   122 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   123 		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
   124 		@post			No change to the iUTContext class.
   125 	*/
   126 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   127 	};	// TTransition_Dtor_TransitionValidator
   128 
   129 // ______________________________________________________________________________
   130 //
   131 /**
   132 	@internalComponent
   133 
   134 	Comments : Provide all the TransitMethodL Unit Test's specific
   135 	validatation for the state of a transition before and after its execution.
   136 	on the CTransition test class for a transition.
   137  */
   138 class TTransition_TransitMethodL_TransitionValidator : public TTransitionValidator
   139 	{
   140 public:
   141 	/**
   142 		@fn				TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext)
   143 		Intended Usage	:	
   144 		@leave  		KErrNoMemory
   145 		@since			7.0
   146 		@param			aUTContext The context within which this transition is executing
   147 	 */
   148 	inline TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext);
   149 
   150 	/**
   151 		@fn				ValidatePreConditions()
   152 		Intended Usage	: Implemented by the developer to check the
   153 						end state of the transition behaviour.
   154 		Error Condition	: Invalid pre-conditions
   155 		@since			7.0
   156 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   157 		@pre 			TTransition_TransitMethodL_TransitionValidator is fully constructed.
   158 		@post			No change to the iUTContext class.
   159 	*/
   160 	virtual inline TBool ValidatePreConditions();
   161 
   162 	/**
   163 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   164 		Intended Usage	:	Implemented by the developer to check the
   165 						end state of the transition behaviour.
   166 						When overriding, if the transition calls an asynchronous function
   167 						ValidatePostConditions will be called twice. Firstly, after the
   168 						asynchronous function has been called and, secondly, after the 
   169 						asynchronous request has completed. The parameter aAsyncState can
   170 						be used to distinguish between these two cases.
   171 		Error Condition	: Invalid post-conditions.
   172 		@since			7.0
   173 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   174 						EAsyncCompleted if the function has completed.
   175 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   176 		@pre 			TTransition_TransitMethodL_TransitionValidator is fully constructed.
   177 		@post			No change to the iUTContext class.
   178 	*/
   179 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   180 	};	// TTransition_TransitMethodL_TransitionValidator
   181 
   182 // ______________________________________________________________________________
   183 //
   184 /**
   185 	@internalComponent
   186 
   187 	Comments : Provide all the RepeatOnce Unit Test's specific
   188 	validatation for the state of a transition before and after its execution.
   189 	on the CTransition test class for a transition.
   190  */
   191 class TTransition_RepeatOnce_TransitionValidator : public TTransitionValidator
   192 	{
   193 public:
   194 	/**
   195 		@fn				TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext)
   196 		Intended Usage	:	
   197 		@leave  		KErrNoMemory
   198 		@since			7.0
   199 		@param			aUTContext The context within which this transition is executing
   200 	 */
   201 	inline TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext);
   202 
   203 	/**
   204 		@fn				ValidatePreConditions()
   205 		Intended Usage	: Implemented by the developer to check the
   206 						end state of the transition behaviour.
   207 		Error Condition	: Invalid pre-conditions
   208 		@since			7.0
   209 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   210 		@pre 			TTransition_RepeatOnce_TransitionValidator is fully constructed.
   211 		@post			No change to the iUTContext class.
   212 	*/
   213 	virtual inline TBool ValidatePreConditions();
   214 
   215 	/**
   216 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   217 		Intended Usage	:	Implemented by the developer to check the
   218 						end state of the transition behaviour.
   219 						When overriding, if the transition calls an asynchronous function
   220 						ValidatePostConditions will be called twice. Firstly, after the
   221 						asynchronous function has been called and, secondly, after the 
   222 						asynchronous request has completed. The parameter aAsyncState can
   223 						be used to distinguish between these two cases.
   224 		Error Condition	: Invalid post-conditions.
   225 		@since			7.0
   226 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   227 						EAsyncCompleted if the function has completed.
   228 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   229 		@pre 			TTransition_RepeatOnce_TransitionValidator is fully constructed.
   230 		@post			No change to the iUTContext class.
   231 	*/
   232 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   233 	};	// TTransition_RepeatOnce_TransitionValidator
   234 
   235 
   236 // ______________________________________________________________________________
   237 //
   238 /**
   239 	@internalComponent
   240 
   241 	Comments : Provide all the TransitionId Unit Test's specific
   242 	validatation for the state of a transition before and after its execution.
   243 	on the CTransition test class for a transition.
   244  */
   245 class TTransition_TransitionId_TransitionValidator : public TTransitionValidator
   246 	{
   247 public:
   248 	/**
   249 		@fn				TTransition_TransitionId_TransitionValidator(CUnitTestContext& aUTContext)
   250 		Intended Usage	:	
   251 		@leave  		KErrNoMemory
   252 		@since			7.0
   253 		@param			aUTContext The context within which this transition is executing
   254 	 */
   255 	inline TTransition_TransitionId_TransitionValidator(CUnitTestContext& aUTContext);
   256 
   257 	/**
   258 		@fn				ValidatePreConditions()
   259 		Intended Usage	: Implemented by the developer to check the
   260 						end state of the transition behaviour.
   261 		Error Condition	: Invalid pre-conditions
   262 		@since			7.0
   263 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   264 		@pre 			TTransition_TransitionId_TransitionValidator is fully constructed.
   265 		@post			No change to the iUTContext class.
   266 	*/
   267 	virtual inline TBool ValidatePreConditions();
   268 
   269 	/**
   270 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   271 		Intended Usage	:	Implemented by the developer to check the
   272 						end state of the transition behaviour.
   273 						When overriding, if the transition calls an asynchronous function
   274 						ValidatePostConditions will be called twice. Firstly, after the
   275 						asynchronous function has been called and, secondly, after the 
   276 						asynchronous request has completed. The parameter aAsyncState can
   277 						be used to distinguish between these two cases.
   278 		Error Condition	: Invalid post-conditions.
   279 		@since			7.0
   280 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   281 						EAsyncCompleted if the function has completed.
   282 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   283 		@pre 			TTransition_TransitionId_TransitionValidator is fully constructed.
   284 		@post			No change to the iUTContext class.
   285 	*/
   286 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   287 	};	// TTransition_TransitionId_TransitionValidator
   288 
   289 // ______________________________________________________________________________
   290 //
   291 /**
   292 	@internalComponent
   293 
   294 	Comments : Provide all the TransitionInfo Unit Test's specific
   295 	validatation for the state of a transition before and after its execution.
   296 	on the CTransition test class for a transition.
   297  */
   298 class TTransition_TransitionInfo_TransitionValidator : public TTransitionValidator
   299 	{
   300 public:
   301 	/**
   302 		@fn				TTransition_TransitionInfo_TransitionValidator(CUnitTestContext& aUTContext)
   303 		Intended Usage	:	
   304 		@leave  		KErrNoMemory
   305 		@since			7.0
   306 		@param			aUTContext The context within which this transition is executing
   307 	 */
   308 	inline TTransition_TransitionInfo_TransitionValidator(CUnitTestContext& aUTContext);
   309 
   310 	/**
   311 		@fn				ValidatePreConditions()
   312 		Intended Usage	: Implemented by the developer to check the
   313 						end state of the transition behaviour.
   314 		Error Condition	: Invalid pre-conditions
   315 		@since			7.0
   316 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   317 		@pre 			TTransition_TransitionInfo_TransitionValidator is fully constructed.
   318 		@post			No change to the iUTContext class.
   319 	*/
   320 	virtual inline TBool ValidatePreConditions();
   321 
   322 	/**
   323 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   324 		Intended Usage	:	Implemented by the developer to check the
   325 						end state of the transition behaviour.
   326 						When overriding, if the transition calls an asynchronous function
   327 						ValidatePostConditions will be called twice. Firstly, after the
   328 						asynchronous function has been called and, secondly, after the 
   329 						asynchronous request has completed. The parameter aAsyncState can
   330 						be used to distinguish between these two cases.
   331 		Error Condition	: Invalid post-conditions.
   332 		@since			7.0
   333 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   334 						EAsyncCompleted if the function has completed.
   335 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   336 		@pre 			TTransition_TransitionInfo_TransitionValidator is fully constructed.
   337 		@post			No change to the iUTContext class.
   338 	*/
   339 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   340 	};	// TTransition_TransitionInfo_TransitionValidator
   341 
   342 // ______________________________________________________________________________
   343 //
   344 /**
   345 	@internalComponent
   346 
   347 	Comments : Provide all the IsBlockingTransition Unit Test's specific
   348 	validatation for the state of a transition before and after its execution.
   349 	on the CTransition test class for a transition.
   350  */
   351 class TTransition_IsBlocking_TransitionValidator : public TTransitionValidator
   352 	{
   353 public:
   354 	/**
   355 		@fn				TTransition_IsBlocking_TransitionValidator(CUnitTestContext& aUTContext)
   356 		Intended Usage	:	
   357 		@leave  		KErrNoMemory
   358 		@since			7.0
   359 		@param			aUTContext The context within which this transition is executing
   360 	 */
   361 	inline TTransition_IsBlocking_TransitionValidator(CUnitTestContext& aUTContext);
   362 
   363 	/**
   364 		@fn				ValidatePreConditions()
   365 		Intended Usage	: Implemented by the developer to check the
   366 						end state of the transition behaviour.
   367 		Error Condition	: Invalid pre-conditions
   368 		@since			7.0
   369 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   370 		@pre 			TTransition_IsBlocking_TransitionValidator is fully constructed.
   371 		@post			No change to the iUTContext class.
   372 	*/
   373 	virtual inline TBool ValidatePreConditions();
   374 
   375 	/**
   376 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   377 		Intended Usage	:	Implemented by the developer to check the
   378 						end state of the transition behaviour.
   379 						When overriding, if the transition calls an asynchronous function
   380 						ValidatePostConditions will be called twice. Firstly, after the
   381 						asynchronous function has been called and, secondly, after the 
   382 						asynchronous request has completed. The parameter aAsyncState can
   383 						be used to distinguish between these two cases.
   384 		Error Condition	: Invalid post-conditions.
   385 		@since			7.0
   386 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   387 						EAsyncCompleted if the function has completed.
   388 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   389 		@pre 			TTransition_IsBlocking_TransitionValidator is fully constructed.
   390 		@post			No change to the iUTContext class.
   391 	*/
   392 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   393 	};	// TTransition_IsBlocking_TransitionValidator
   394 
   395 // ______________________________________________________________________________
   396 //
   397 /**
   398 	@internalComponent
   399 
   400 	Comments : Provide all the SetBlockingTransition Unit Test's specific
   401 	validatation for the state of a transition before and after its execution.
   402 	on the CTransition test class for a transition.
   403  */
   404 class TTransition_SetBlocking_TransitionValidator : public TTransitionValidator
   405 	{
   406 public:
   407 	/**
   408 		@fn				TTransition_SetBlocking_TransitionValidator(CUnitTestContext& aUTContext)
   409 		Intended Usage	:	
   410 		@leave  		KErrNoMemory
   411 		@since			7.0
   412 		@param			aUTContext The context within which this transition is executing
   413 	 */
   414 	inline TTransition_SetBlocking_TransitionValidator(CUnitTestContext& aUTContext);
   415 
   416 	/**
   417 		@fn				ValidatePreConditions()
   418 		Intended Usage	: Implemented by the developer to check the
   419 						end state of the transition behaviour.
   420 		Error Condition	: Invalid pre-conditions
   421 		@since			7.0
   422 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   423 		@pre 			TTransition_SetBlocking_TransitionValidator is fully constructed.
   424 		@post			No change to the iUTContext class.
   425 	*/
   426 	virtual inline TBool ValidatePreConditions();
   427 
   428 	/**
   429 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   430 		Intended Usage	:	Implemented by the developer to check the
   431 						end state of the transition behaviour.
   432 						When overriding, if the transition calls an asynchronous function
   433 						ValidatePostConditions will be called twice. Firstly, after the
   434 						asynchronous function has been called and, secondly, after the 
   435 						asynchronous request has completed. The parameter aAsyncState can
   436 						be used to distinguish between these two cases.
   437 		Error Condition	: Invalid post-conditions.
   438 		@since			7.0
   439 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   440 						EAsyncCompleted if the function has completed.
   441 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   442 		@pre 			TTransition_SetBlocking_TransitionValidator is fully constructed.
   443 		@post			No change to the iUTContext class.
   444 	*/
   445 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   446 	};	// TTransition_SetBlocking_TransitionValidator
   447 
   448 
   449 // ______________________________________________________________________________
   450 //
   451 /**
   452 	@internalComponent
   453 
   454 	Comments : Provide all the GetErrorCodeTransition Unit Test's specific
   455 	validatation for the state of a transition before and after its execution.
   456 	on the CTransition test class for a transition.
   457  */
   458 class TTransition_GetErrorCode_TransitionValidator : public TTransitionValidator
   459 	{
   460 public:
   461 	/**
   462 		@fn				TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
   463 		Intended Usage	:	
   464 		@leave  		KErrNoMemory
   465 		@since			7.0
   466 		@param			aUTContext The context within which this transition is executing
   467 	 */
   468 	inline TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext);
   469 
   470 	/**
   471 		@fn				ValidatePreConditions()
   472 		Intended Usage	: Implemented by the developer to check the
   473 						end state of the transition behaviour.
   474 		Error Condition	: Invalid pre-conditions
   475 		@since			7.0
   476 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   477 		@pre 			TTransition_GetErrorCode_TransitionValidator is fully constructed.
   478 		@post			No change to the iUTContext class.
   479 	*/
   480 	virtual inline TBool ValidatePreConditions();
   481 
   482 	/**
   483 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   484 		Intended Usage	:	Implemented by the developer to check the
   485 						end state of the transition behaviour.
   486 						When overriding, if the transition calls an asynchronous function
   487 						ValidatePostConditions will be called twice. Firstly, after the
   488 						asynchronous function has been called and, secondly, after the 
   489 						asynchronous request has completed. The parameter aAsyncState can
   490 						be used to distinguish between these two cases.
   491 		Error Condition	: Invalid post-conditions.
   492 		@since			7.0
   493 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   494 						EAsyncCompleted if the function has completed.
   495 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   496 		@pre 			TTransition_GetErrorCode_TransitionValidator is fully constructed.
   497 		@post			No change to the iUTContext class.
   498 	*/
   499 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   500 	};	// TTransition_GetErrorCode_TransitionValidator
   501 
   502 // ______________________________________________________________________________
   503 //
   504 /**
   505 	@internalComponent
   506 
   507 	Comments : Provide all the RunTransitionTransition Unit Test's specific
   508 	validatation for the state of a transition before and after its execution.
   509 	on the CTransition test class for a transition.
   510  */
   511 class TTransition_RunTransition_TransitionValidator : public TTransitionValidator
   512 	{
   513 public:
   514 	/**
   515 		@fn				TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext)
   516 		Intended Usage	:	
   517 		@leave  		KErrNoMemory
   518 		@since			7.0
   519 		@param			aUTContext The context within which this transition is executing
   520 	 */
   521 	inline TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext);
   522 
   523 	/**
   524 		@fn				ValidatePreConditions()
   525 		Intended Usage	: Implemented by the developer to check the
   526 						end state of the transition behaviour.
   527 		Error Condition	: Invalid pre-conditions
   528 		@since			7.0
   529 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   530 		@pre 			TTransition_RunTransition_TransitionValidator is fully constructed.
   531 		@post			No change to the iUTContext class.
   532 	*/
   533 	virtual inline TBool ValidatePreConditions();
   534 
   535 	/**
   536 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   537 		Intended Usage	:	Implemented by the developer to check the
   538 						end state of the transition behaviour.
   539 						When overriding, if the transition calls an asynchronous function
   540 						ValidatePostConditions will be called twice. Firstly, after the
   541 						asynchronous function has been called and, secondly, after the 
   542 						asynchronous request has completed. The parameter aAsyncState can
   543 						be used to distinguish between these two cases.
   544 		Error Condition	: Invalid post-conditions.
   545 		@since			7.0
   546 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   547 						EAsyncCompleted if the function has completed.
   548 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   549 		@pre 			TTransition_RunTransition_TransitionValidator is fully constructed.
   550 		@post			No change to the iUTContext class.
   551 	*/
   552 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   553 	};	// TTransition_RunTransition_TransitionValidator
   554 // ______________________________________________________________________________
   555 //
   556 /**
   557 	@internalComponent
   558 
   559 	Comments : Provide all the CancelTransition Unit Test's specific
   560 	validatation for the state of a transition before and after its execution.
   561 	on the CTransition test class for a transition.
   562  */
   563 class TTransition_Cancel_TransitionValidator : public TTransitionValidator
   564 	{
   565 public:
   566 	/**
   567 		@fn				TTransition_Cancel_TransitionValidator(CUnitTestContext& aUTContext)
   568 		Intended Usage	:	
   569 		@leave  		KErrNoMemory
   570 		@since			7.0
   571 		@param			aUTContext The context within which this transition is executing
   572 	 */
   573 	inline TTransition_Cancel_TransitionValidator(CUnitTestContext& aUTContext);
   574 
   575 	/**
   576 		@fn				ValidatePreConditions()
   577 		Intended Usage	: Implemented by the developer to check the
   578 						end state of the transition behaviour.
   579 		Error Condition	: Invalid pre-conditions
   580 		@since			7.0
   581 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   582 		@pre 			TTransition_Cancel_TransitionValidator is fully constructed.
   583 		@post			No change to the iUTContext class.
   584 	*/
   585 	virtual inline TBool ValidatePreConditions();
   586 
   587 	/**
   588 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   589 		Intended Usage	:	Implemented by the developer to check the
   590 						end state of the transition behaviour.
   591 						When overriding, if the transition calls an asynchronous function
   592 						ValidatePostConditions will be called twice. Firstly, after the
   593 						asynchronous function has been called and, secondly, after the 
   594 						asynchronous request has completed. The parameter aAsyncState can
   595 						be used to distinguish between these two cases.
   596 		Error Condition	: Invalid post-conditions.
   597 		@since			7.0
   598 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   599 						EAsyncCompleted if the function has completed.
   600 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   601 		@pre 			TTransition_Cancel_TransitionValidator is fully constructed.
   602 		@post			No change to the iUTContext class.
   603 	*/
   604 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   605 	};	// TTransition_Cancel_TransitionValidator
   606 
   607 // ______________________________________________________________________________
   608 //
   609 /**
   610 	@internalComponent
   611 
   612 	Comments : Provide all the DtorUnit Test's specific
   613 	validatation for the state of a transition before and after its execution.
   614 	on the CTransition test class for a transition.
   615  */
   616 class TTransition_NULL_TransitionValidator : public TTransitionValidator
   617 	{
   618 public:
   619 	/**
   620 		@fn				TTransition_NULL_TransitionValidator(CUnitTestContext& aUTContext)
   621 		Intended Usage	:	
   622 		@leave  		KErrNoMemory
   623 		@since			7.0
   624 		@param			aUTContext The context within which this transition is executing
   625 	 */
   626 	inline TTransition_NULL_TransitionValidator(CUnitTestContext& aUTContext);
   627 
   628 	/**
   629 		@fn				ValidatePreConditions()
   630 		Intended Usage	: Implemented by the developer to check the
   631 						end state of the transition behaviour.
   632 		Error Condition	: Invalid pre-conditions
   633 		@since			7.0
   634 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   635 		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
   636 		@post			No change to the iUTContext class.
   637 	*/
   638 	virtual inline TBool ValidatePreConditions();
   639 
   640 	/**
   641 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   642 		Intended Usage	:	Implemented by the developer to check the
   643 						end state of the transition behaviour.
   644 						When overriding, if the transition calls an asynchronous function
   645 						ValidatePostConditions will be called twice. Firstly, after the
   646 						asynchronous function has been called and, secondly, after the 
   647 						asynchronous request has completed. The parameter aAsyncState can
   648 						be used to distinguish between these two cases.
   649 		Error Condition	: Invalid post-conditions.
   650 		@since			7.0
   651 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   652 						EAsyncCompleted if the function has completed.
   653 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   654 		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
   655 		@post			No change to the iUTContext class.
   656 	*/
   657 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   658 	};	// TTransition_Dtor_TransitionValidator
   659 
   660 
   661 #include "TransitionTransitionValidation.inl"
   662 
   663 #endif // __TRANSITIONTRANSITIONVALIDATION_H__
   664