os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionTransitionValidation.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2001-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 definitions of the transition classes upon the CTransition class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __TRANSITIONTRANSITIONVALIDATION_H__
sl@0
    19
#define __TRANSITIONTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "TransitionTransitions.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 CtorUnit Test's specific
sl@0
    29
	validatation for the state of a transition before and after its execution.
sl@0
    30
	on the CTransition test class for a transition.
sl@0
    31
 */
sl@0
    32
class TTransition_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	/**
sl@0
    36
		@fn				TTransition_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    37
		Intended Usage	:	
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 TTransition_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 			TTransition_Ctor_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 			TTransition_Ctor_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
	};	// TTransition_Ctor_TransitionValidator
sl@0
    75
sl@0
    76
// ______________________________________________________________________________
sl@0
    77
//
sl@0
    78
/**
sl@0
    79
	@internalComponent
sl@0
    80
sl@0
    81
	Comments : Provide all the DtorUnit Test's specific
sl@0
    82
	validatation for the state of a transition before and after its execution.
sl@0
    83
	on the CTransition test class for a transition.
sl@0
    84
 */
sl@0
    85
class TTransition_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    86
	{
sl@0
    87
public:
sl@0
    88
	/**
sl@0
    89
		@fn				TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    90
		Intended Usage	:	
sl@0
    91
		@leave  		KErrNoMemory
sl@0
    92
		@since			7.0
sl@0
    93
		@param			aUTContext The context within which this transition is executing
sl@0
    94
	 */
sl@0
    95
	inline TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    96
sl@0
    97
	/**
sl@0
    98
		@fn				ValidatePreConditions()
sl@0
    99
		Intended Usage	: Implemented by the developer to check the
sl@0
   100
						end state of the transition behaviour.
sl@0
   101
		Error Condition	: Invalid pre-conditions
sl@0
   102
		@since			7.0
sl@0
   103
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   104
		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
sl@0
   105
		@post			No change to the iUTContext class.
sl@0
   106
	*/
sl@0
   107
	virtual inline TBool ValidatePreConditions();
sl@0
   108
sl@0
   109
	/**
sl@0
   110
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   111
		Intended Usage	:	Implemented by the developer to check the
sl@0
   112
						end state of the transition behaviour.
sl@0
   113
						When overriding, if the transition calls an asynchronous function
sl@0
   114
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   115
						asynchronous function has been called and, secondly, after the 
sl@0
   116
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   117
						be used to distinguish between these two cases.
sl@0
   118
		Error Condition	: Invalid post-conditions.
sl@0
   119
		@since			7.0
sl@0
   120
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   121
						EAsyncCompleted if the function has completed.
sl@0
   122
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   123
		@pre 			TTransition_Dtor_TransitionValidator is fully constructed.
sl@0
   124
		@post			No change to the iUTContext class.
sl@0
   125
	*/
sl@0
   126
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   127
	};	// TTransition_Dtor_TransitionValidator
sl@0
   128
sl@0
   129
// ______________________________________________________________________________
sl@0
   130
//
sl@0
   131
/**
sl@0
   132
	@internalComponent
sl@0
   133
sl@0
   134
	Comments : Provide all the TransitMethodL Unit Test's specific
sl@0
   135
	validatation for the state of a transition before and after its execution.
sl@0
   136
	on the CTransition test class for a transition.
sl@0
   137
 */
sl@0
   138
class TTransition_TransitMethodL_TransitionValidator : public TTransitionValidator
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	/**
sl@0
   142
		@fn				TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   143
		Intended Usage	:	
sl@0
   144
		@leave  		KErrNoMemory
sl@0
   145
		@since			7.0
sl@0
   146
		@param			aUTContext The context within which this transition is executing
sl@0
   147
	 */
sl@0
   148
	inline TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   149
sl@0
   150
	/**
sl@0
   151
		@fn				ValidatePreConditions()
sl@0
   152
		Intended Usage	: Implemented by the developer to check the
sl@0
   153
						end state of the transition behaviour.
sl@0
   154
		Error Condition	: Invalid pre-conditions
sl@0
   155
		@since			7.0
sl@0
   156
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   157
		@pre 			TTransition_TransitMethodL_TransitionValidator is fully constructed.
sl@0
   158
		@post			No change to the iUTContext class.
sl@0
   159
	*/
sl@0
   160
	virtual inline TBool ValidatePreConditions();
sl@0
   161
sl@0
   162
	/**
sl@0
   163
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   164
		Intended Usage	:	Implemented by the developer to check the
sl@0
   165
						end state of the transition behaviour.
sl@0
   166
						When overriding, if the transition calls an asynchronous function
sl@0
   167
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   168
						asynchronous function has been called and, secondly, after the 
sl@0
   169
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   170
						be used to distinguish between these two cases.
sl@0
   171
		Error Condition	: Invalid post-conditions.
sl@0
   172
		@since			7.0
sl@0
   173
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   174
						EAsyncCompleted if the function has completed.
sl@0
   175
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   176
		@pre 			TTransition_TransitMethodL_TransitionValidator is fully constructed.
sl@0
   177
		@post			No change to the iUTContext class.
sl@0
   178
	*/
sl@0
   179
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   180
	};	// TTransition_TransitMethodL_TransitionValidator
sl@0
   181
sl@0
   182
// ______________________________________________________________________________
sl@0
   183
//
sl@0
   184
/**
sl@0
   185
	@internalComponent
sl@0
   186
sl@0
   187
	Comments : Provide all the RepeatOnce Unit Test's specific
sl@0
   188
	validatation for the state of a transition before and after its execution.
sl@0
   189
	on the CTransition test class for a transition.
sl@0
   190
 */
sl@0
   191
class TTransition_RepeatOnce_TransitionValidator : public TTransitionValidator
sl@0
   192
	{
sl@0
   193
public:
sl@0
   194
	/**
sl@0
   195
		@fn				TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   196
		Intended Usage	:	
sl@0
   197
		@leave  		KErrNoMemory
sl@0
   198
		@since			7.0
sl@0
   199
		@param			aUTContext The context within which this transition is executing
sl@0
   200
	 */
sl@0
   201
	inline TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   202
sl@0
   203
	/**
sl@0
   204
		@fn				ValidatePreConditions()
sl@0
   205
		Intended Usage	: Implemented by the developer to check the
sl@0
   206
						end state of the transition behaviour.
sl@0
   207
		Error Condition	: Invalid pre-conditions
sl@0
   208
		@since			7.0
sl@0
   209
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   210
		@pre 			TTransition_RepeatOnce_TransitionValidator is fully constructed.
sl@0
   211
		@post			No change to the iUTContext class.
sl@0
   212
	*/
sl@0
   213
	virtual inline TBool ValidatePreConditions();
sl@0
   214
sl@0
   215
	/**
sl@0
   216
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   217
		Intended Usage	:	Implemented by the developer to check the
sl@0
   218
						end state of the transition behaviour.
sl@0
   219
						When overriding, if the transition calls an asynchronous function
sl@0
   220
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   221
						asynchronous function has been called and, secondly, after the 
sl@0
   222
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   223
						be used to distinguish between these two cases.
sl@0
   224
		Error Condition	: Invalid post-conditions.
sl@0
   225
		@since			7.0
sl@0
   226
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   227
						EAsyncCompleted if the function has completed.
sl@0
   228
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   229
		@pre 			TTransition_RepeatOnce_TransitionValidator is fully constructed.
sl@0
   230
		@post			No change to the iUTContext class.
sl@0
   231
	*/
sl@0
   232
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   233
	};	// TTransition_RepeatOnce_TransitionValidator
sl@0
   234
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 TransitionId Unit Test's specific
sl@0
   242
	validatation for the state of a transition before and after its execution.
sl@0
   243
	on the CTransition test class for a transition.
sl@0
   244
 */
sl@0
   245
class TTransition_TransitionId_TransitionValidator : public TTransitionValidator
sl@0
   246
	{
sl@0
   247
public:
sl@0
   248
	/**
sl@0
   249
		@fn				TTransition_TransitionId_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 TTransition_TransitionId_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 			TTransition_TransitionId_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 			TTransition_TransitionId_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
	};	// TTransition_TransitionId_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 TransitionInfo Unit Test's specific
sl@0
   295
	validatation for the state of a transition before and after its execution.
sl@0
   296
	on the CTransition test class for a transition.
sl@0
   297
 */
sl@0
   298
class TTransition_TransitionInfo_TransitionValidator : public TTransitionValidator
sl@0
   299
	{
sl@0
   300
public:
sl@0
   301
	/**
sl@0
   302
		@fn				TTransition_TransitionInfo_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 TTransition_TransitionInfo_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 			TTransition_TransitionInfo_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 			TTransition_TransitionInfo_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
	};	// TTransition_TransitionInfo_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 IsBlockingTransition Unit Test's specific
sl@0
   348
	validatation for the state of a transition before and after its execution.
sl@0
   349
	on the CTransition test class for a transition.
sl@0
   350
 */
sl@0
   351
class TTransition_IsBlocking_TransitionValidator : public TTransitionValidator
sl@0
   352
	{
sl@0
   353
public:
sl@0
   354
	/**
sl@0
   355
		@fn				TTransition_IsBlocking_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 TTransition_IsBlocking_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 			TTransition_IsBlocking_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 			TTransition_IsBlocking_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
	};	// TTransition_IsBlocking_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 SetBlockingTransition Unit Test's specific
sl@0
   401
	validatation for the state of a transition before and after its execution.
sl@0
   402
	on the CTransition test class for a transition.
sl@0
   403
 */
sl@0
   404
class TTransition_SetBlocking_TransitionValidator : public TTransitionValidator
sl@0
   405
	{
sl@0
   406
public:
sl@0
   407
	/**
sl@0
   408
		@fn				TTransition_SetBlocking_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 TTransition_SetBlocking_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 			TTransition_SetBlocking_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 			TTransition_SetBlocking_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
	};	// TTransition_SetBlocking_TransitionValidator
sl@0
   447
sl@0
   448
sl@0
   449
// ______________________________________________________________________________
sl@0
   450
//
sl@0
   451
/**
sl@0
   452
	@internalComponent
sl@0
   453
sl@0
   454
	Comments : Provide all the GetErrorCodeTransition Unit Test's specific
sl@0
   455
	validatation for the state of a transition before and after its execution.
sl@0
   456
	on the CTransition test class for a transition.
sl@0
   457
 */
sl@0
   458
class TTransition_GetErrorCode_TransitionValidator : public TTransitionValidator
sl@0
   459
	{
sl@0
   460
public:
sl@0
   461
	/**
sl@0
   462
		@fn				TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   463
		Intended Usage	:	
sl@0
   464
		@leave  		KErrNoMemory
sl@0
   465
		@since			7.0
sl@0
   466
		@param			aUTContext The context within which this transition is executing
sl@0
   467
	 */
sl@0
   468
	inline TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   469
sl@0
   470
	/**
sl@0
   471
		@fn				ValidatePreConditions()
sl@0
   472
		Intended Usage	: Implemented by the developer to check the
sl@0
   473
						end state of the transition behaviour.
sl@0
   474
		Error Condition	: Invalid pre-conditions
sl@0
   475
		@since			7.0
sl@0
   476
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   477
		@pre 			TTransition_GetErrorCode_TransitionValidator is fully constructed.
sl@0
   478
		@post			No change to the iUTContext class.
sl@0
   479
	*/
sl@0
   480
	virtual inline TBool ValidatePreConditions();
sl@0
   481
sl@0
   482
	/**
sl@0
   483
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   484
		Intended Usage	:	Implemented by the developer to check the
sl@0
   485
						end state of the transition behaviour.
sl@0
   486
						When overriding, if the transition calls an asynchronous function
sl@0
   487
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   488
						asynchronous function has been called and, secondly, after the 
sl@0
   489
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   490
						be used to distinguish between these two cases.
sl@0
   491
		Error Condition	: Invalid post-conditions.
sl@0
   492
		@since			7.0
sl@0
   493
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   494
						EAsyncCompleted if the function has completed.
sl@0
   495
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   496
		@pre 			TTransition_GetErrorCode_TransitionValidator is fully constructed.
sl@0
   497
		@post			No change to the iUTContext class.
sl@0
   498
	*/
sl@0
   499
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   500
	};	// TTransition_GetErrorCode_TransitionValidator
sl@0
   501
sl@0
   502
// ______________________________________________________________________________
sl@0
   503
//
sl@0
   504
/**
sl@0
   505
	@internalComponent
sl@0
   506
sl@0
   507
	Comments : Provide all the RunTransitionTransition Unit Test's specific
sl@0
   508
	validatation for the state of a transition before and after its execution.
sl@0
   509
	on the CTransition test class for a transition.
sl@0
   510
 */
sl@0
   511
class TTransition_RunTransition_TransitionValidator : public TTransitionValidator
sl@0
   512
	{
sl@0
   513
public:
sl@0
   514
	/**
sl@0
   515
		@fn				TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   516
		Intended Usage	:	
sl@0
   517
		@leave  		KErrNoMemory
sl@0
   518
		@since			7.0
sl@0
   519
		@param			aUTContext The context within which this transition is executing
sl@0
   520
	 */
sl@0
   521
	inline TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   522
sl@0
   523
	/**
sl@0
   524
		@fn				ValidatePreConditions()
sl@0
   525
		Intended Usage	: Implemented by the developer to check the
sl@0
   526
						end state of the transition behaviour.
sl@0
   527
		Error Condition	: Invalid pre-conditions
sl@0
   528
		@since			7.0
sl@0
   529
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   530
		@pre 			TTransition_RunTransition_TransitionValidator is fully constructed.
sl@0
   531
		@post			No change to the iUTContext class.
sl@0
   532
	*/
sl@0
   533
	virtual inline TBool ValidatePreConditions();
sl@0
   534
sl@0
   535
	/**
sl@0
   536
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   537
		Intended Usage	:	Implemented by the developer to check the
sl@0
   538
						end state of the transition behaviour.
sl@0
   539
						When overriding, if the transition calls an asynchronous function
sl@0
   540
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   541
						asynchronous function has been called and, secondly, after the 
sl@0
   542
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   543
						be used to distinguish between these two cases.
sl@0
   544
		Error Condition	: Invalid post-conditions.
sl@0
   545
		@since			7.0
sl@0
   546
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   547
						EAsyncCompleted if the function has completed.
sl@0
   548
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   549
		@pre 			TTransition_RunTransition_TransitionValidator is fully constructed.
sl@0
   550
		@post			No change to the iUTContext class.
sl@0
   551
	*/
sl@0
   552
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   553
	};	// TTransition_RunTransition_TransitionValidator
sl@0
   554
// ______________________________________________________________________________
sl@0
   555
//
sl@0
   556
/**
sl@0
   557
	@internalComponent
sl@0
   558
sl@0
   559
	Comments : Provide all the CancelTransition Unit Test's specific
sl@0
   560
	validatation for the state of a transition before and after its execution.
sl@0
   561
	on the CTransition test class for a transition.
sl@0
   562
 */
sl@0
   563
class TTransition_Cancel_TransitionValidator : public TTransitionValidator
sl@0
   564
	{
sl@0
   565
public:
sl@0
   566
	/**
sl@0
   567
		@fn				TTransition_Cancel_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 TTransition_Cancel_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 			TTransition_Cancel_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 			TTransition_Cancel_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
	};	// TTransition_Cancel_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 DtorUnit Test's specific
sl@0
   613
	validatation for the state of a transition before and after its execution.
sl@0
   614
	on the CTransition test class for a transition.
sl@0
   615
 */
sl@0
   616
class TTransition_NULL_TransitionValidator : public TTransitionValidator
sl@0
   617
	{
sl@0
   618
public:
sl@0
   619
	/**
sl@0
   620
		@fn				TTransition_NULL_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 TTransition_NULL_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 			TTransition_Dtor_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 			TTransition_Dtor_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
	};	// TTransition_Dtor_TransitionValidator
sl@0
   659
sl@0
   660
sl@0
   661
#include "TransitionTransitionValidation.inl"
sl@0
   662
sl@0
   663
#endif // __TRANSITIONTRANSITIONVALIDATION_H__
sl@0
   664