os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitionValidation.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The definitions of the transition classes upon the CUnitTest class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __UNITTESTTRANSITIONVALIDATION_H__
sl@0
    19
#define __UNITTESTTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "UnitTestTransitions.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 CUnitTest test class for a transition.
sl@0
    31
 */
sl@0
    32
class TUnitTest_Ctor_TransitionValidator : public TTransitionValidator
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	/**
sl@0
    36
		@fn				TUnitTest_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    37
		Intended Usage	: Default constructor.	
sl@0
    38
		@leave  		KErrNoMemory
sl@0
    39
		@since			7.0
sl@0
    40
		@param			aUTContext The context within which this transition is executing
sl@0
    41
	 */
sl@0
    42
	inline TUnitTest_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 			TUnitTest_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 			TUnitTest_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
	};	// TUnitTest_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 CUnitTest test class for a transition.
sl@0
    84
 */
sl@0
    85
class TUnitTest_Dtor_TransitionValidator : public TTransitionValidator
sl@0
    86
	{
sl@0
    87
public:
sl@0
    88
	/**
sl@0
    89
		@fn				TUnitTest_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 TUnitTest_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 			TUnitTest_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 			TUnitTest_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
	};	// TUnitTest_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 TransitionSetUnit Test's specific
sl@0
   135
	validatation for the state of a transition before and after its execution.
sl@0
   136
	on the CUnitTest test class for a transition.
sl@0
   137
 */
sl@0
   138
class TUnitTest_TransitionSet_TransitionValidator : public TTransitionValidator
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	/**
sl@0
   142
		@fn				TUnitTest_TransitionSet_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 TUnitTest_TransitionSet_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 			TUnitTest_TransitionSet_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 			TUnitTest_TransitionSet_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
	};	// TUnitTest_TransitionSet_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 GetCurrentTransitionUnit Test's specific
sl@0
   188
	validatation for the state of a transition before and after its execution.
sl@0
   189
	on the CUnitTest test class for a transition.
sl@0
   190
 */
sl@0
   191
class TUnitTest_GetCurrentTransition_TransitionValidator : public TTransitionValidator
sl@0
   192
	{
sl@0
   193
public:
sl@0
   194
	/**
sl@0
   195
		@fn				TUnitTest_GetCurrentTransition_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 TUnitTest_GetCurrentTransition_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 			TUnitTest_GetCurrentTransition_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 			TUnitTest_GetCurrentTransition_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
	};	// TUnitTest_GetCurrentTransition_TransitionValidator
sl@0
   234
sl@0
   235
// ______________________________________________________________________________
sl@0
   236
//
sl@0
   237
/**
sl@0
   238
	@internalComponent
sl@0
   239
sl@0
   240
	Comments : Provide all the SetCurrentTransitionUnit Test's specific
sl@0
   241
	validatation for the state of a transition before and after its execution.
sl@0
   242
	on the CUnitTest test class for a transition.
sl@0
   243
 */
sl@0
   244
class TUnitTest_SetCurrentTransition_TransitionValidator : public TTransitionValidator
sl@0
   245
	{
sl@0
   246
public:
sl@0
   247
	/**
sl@0
   248
		@fn				TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   249
		Intended Usage	:	
sl@0
   250
		@leave  		KErrNoMemory
sl@0
   251
		@since			7.0
sl@0
   252
		@param			aUTContext The context within which this transition is executing
sl@0
   253
	 */
sl@0
   254
	inline TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   255
sl@0
   256
	/**
sl@0
   257
		@fn				ValidatePreConditions()
sl@0
   258
		Intended Usage	: Implemented by the developer to check the
sl@0
   259
						end state of the transition behaviour.
sl@0
   260
		Error Condition	: Invalid pre-conditions
sl@0
   261
		@since			7.0
sl@0
   262
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   263
		@pre 			TUnitTest_SetCurrentTransition_TransitionValidator is fully constructed.
sl@0
   264
		@post			No change to the iUTContext class.
sl@0
   265
	*/
sl@0
   266
	virtual inline TBool ValidatePreConditions();
sl@0
   267
sl@0
   268
	/**
sl@0
   269
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   270
		Intended Usage	:	Implemented by the developer to check the
sl@0
   271
						end state of the transition behaviour.
sl@0
   272
						When overriding, if the transition calls an asynchronous function
sl@0
   273
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   274
						asynchronous function has been called and, secondly, after the 
sl@0
   275
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   276
						be used to distinguish between these two cases.
sl@0
   277
		Error Condition	: Invalid post-conditions.
sl@0
   278
		@since			7.0
sl@0
   279
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   280
						EAsyncCompleted if the function has completed.
sl@0
   281
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   282
		@pre 			TUnitTest_SetCurrentTransition_TransitionValidator is fully constructed.
sl@0
   283
		@post			No change to the iUTContext class.
sl@0
   284
	*/
sl@0
   285
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   286
	};	// TUnitTest_SetCurrentTransition_TransitionValidator
sl@0
   287
sl@0
   288
// ______________________________________________________________________________
sl@0
   289
//
sl@0
   290
/**
sl@0
   291
	@internalComponent
sl@0
   292
sl@0
   293
	Comments : Provide all the SetParametersUnit Test's specific
sl@0
   294
	validatation for the state of a transition before and after its execution.
sl@0
   295
	on the CUnitTest test class for a transition.
sl@0
   296
 */
sl@0
   297
class TUnitTest_SetParameters_TransitionValidator : public TTransitionValidator
sl@0
   298
	{
sl@0
   299
public:
sl@0
   300
	/**
sl@0
   301
		@fn				TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   302
		Intended Usage	:	
sl@0
   303
		@leave  		KErrNoMemory
sl@0
   304
		@since			7.0
sl@0
   305
		@param			aUTContext The context within which this transition is executing
sl@0
   306
	 */
sl@0
   307
	inline TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   308
sl@0
   309
	/**
sl@0
   310
		@fn				ValidatePreConditions()
sl@0
   311
		Intended Usage	: Implemented by the developer to check the
sl@0
   312
						end state of the transition behaviour.
sl@0
   313
		Error Condition	: Invalid pre-conditions
sl@0
   314
		@since			7.0
sl@0
   315
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   316
		@pre 			TUnitTest_SetParameters_TransitionValidator is fully constructed.
sl@0
   317
		@post			No change to the iUTContext class.
sl@0
   318
	*/
sl@0
   319
	virtual inline TBool ValidatePreConditions();
sl@0
   320
sl@0
   321
	/**
sl@0
   322
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   323
		Intended Usage	:	Implemented by the developer to check the
sl@0
   324
						end state of the transition behaviour.
sl@0
   325
						When overriding, if the transition calls an asynchronous function
sl@0
   326
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   327
						asynchronous function has been called and, secondly, after the 
sl@0
   328
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   329
						be used to distinguish between these two cases.
sl@0
   330
		Error Condition	: Invalid post-conditions.
sl@0
   331
		@since			7.0
sl@0
   332
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   333
						EAsyncCompleted if the function has completed.
sl@0
   334
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   335
		@pre 			TUnitTest_SetParameters_TransitionValidator is fully constructed.
sl@0
   336
		@post			No change to the iUTContext class.
sl@0
   337
	*/
sl@0
   338
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   339
	};	// TUnitTest_SetParameters_TransitionValidator
sl@0
   340
sl@0
   341
// ______________________________________________________________________________
sl@0
   342
//
sl@0
   343
/**
sl@0
   344
	@internalComponent
sl@0
   345
sl@0
   346
	Comments : Provide all the PrepareUnitTestUnit Test's specific
sl@0
   347
	validatation for the state of a transition before and after its execution.
sl@0
   348
	on the CUnitTest test class for a transition.
sl@0
   349
 */
sl@0
   350
class TUnitTest_PrepareUnitTest_TransitionValidator : public TTransitionValidator
sl@0
   351
	{
sl@0
   352
public:
sl@0
   353
	/**
sl@0
   354
		@fn				TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   355
		Intended Usage	:	
sl@0
   356
		@leave  		KErrNoMemory
sl@0
   357
		@since			7.0
sl@0
   358
		@param			aUTContext The context within which this transition is executing
sl@0
   359
	 */
sl@0
   360
	inline TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   361
sl@0
   362
	/**
sl@0
   363
		@fn				ValidatePreConditions()
sl@0
   364
		Intended Usage	: Implemented by the developer to check the
sl@0
   365
						end state of the transition behaviour.
sl@0
   366
		Error Condition	: Invalid pre-conditions
sl@0
   367
		@since			7.0
sl@0
   368
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   369
		@pre 			TUnitTest_PrepareUnitTest_TransitionValidator is fully constructed.
sl@0
   370
		@post			No change to the iUTContext class.
sl@0
   371
	*/
sl@0
   372
	virtual inline TBool ValidatePreConditions();
sl@0
   373
sl@0
   374
	/**
sl@0
   375
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   376
		Intended Usage	:	Implemented by the developer to check the
sl@0
   377
						end state of the transition behaviour.
sl@0
   378
						When overriding, if the transition calls an asynchronous function
sl@0
   379
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   380
						asynchronous function has been called and, secondly, after the 
sl@0
   381
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   382
						be used to distinguish between these two cases.
sl@0
   383
		Error Condition	: Invalid post-conditions.
sl@0
   384
		@since			7.0
sl@0
   385
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   386
						EAsyncCompleted if the function has completed.
sl@0
   387
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   388
		@pre 			TUnitTest_PrepareUnitTest_TransitionValidator is fully constructed.
sl@0
   389
		@post			No change to the iUTContext class.
sl@0
   390
	*/
sl@0
   391
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   392
	};	// TUnitTest_PrepareUnitTest_TransitionValidator
sl@0
   393
sl@0
   394
// ______________________________________________________________________________
sl@0
   395
//
sl@0
   396
/**
sl@0
   397
	@internalComponent
sl@0
   398
sl@0
   399
	Comments : Provide all the RunTestUnit Test's specific
sl@0
   400
	validatation for the state of a transition before and after its execution.
sl@0
   401
	on the CUnitTest test class for a transition.
sl@0
   402
 */
sl@0
   403
class TUnitTest_RunTest_TransitionValidator : public TTransitionValidator
sl@0
   404
	{
sl@0
   405
public:
sl@0
   406
	/**
sl@0
   407
		@fn				TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   408
		Intended Usage	:	
sl@0
   409
		@leave  		KErrNoMemory
sl@0
   410
		@since			7.0
sl@0
   411
		@param			aUTContext The context within which this transition is executing
sl@0
   412
	 */
sl@0
   413
	inline TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   414
sl@0
   415
	/**
sl@0
   416
		@fn				ValidatePreConditions()
sl@0
   417
		Intended Usage	: Implemented by the developer to check the
sl@0
   418
						end state of the transition behaviour.
sl@0
   419
		Error Condition	: Invalid pre-conditions
sl@0
   420
		@since			7.0
sl@0
   421
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   422
		@pre 			TUnitTest_RunTest_TransitionValidator is fully constructed.
sl@0
   423
		@post			No change to the iUTContext class.
sl@0
   424
	*/
sl@0
   425
	virtual inline TBool ValidatePreConditions();
sl@0
   426
sl@0
   427
	/**
sl@0
   428
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   429
		Intended Usage	:	Implemented by the developer to check the
sl@0
   430
						end state of the transition behaviour.
sl@0
   431
						When overriding, if the transition calls an asynchronous function
sl@0
   432
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   433
						asynchronous function has been called and, secondly, after the 
sl@0
   434
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   435
						be used to distinguish between these two cases.
sl@0
   436
		Error Condition	: Invalid post-conditions.
sl@0
   437
		@since			7.0
sl@0
   438
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   439
						EAsyncCompleted if the function has completed.
sl@0
   440
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   441
		@pre 			TUnitTest_RunTest_TransitionValidator is fully constructed.
sl@0
   442
		@post			No change to the iUTContext class.
sl@0
   443
	*/
sl@0
   444
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   445
	};	// TUnitTest_RunTest_TransitionValidator
sl@0
   446
sl@0
   447
// ______________________________________________________________________________
sl@0
   448
//
sl@0
   449
/**
sl@0
   450
	@internalComponent
sl@0
   451
sl@0
   452
	Comments : Provide all the AddTransitionUnit Test's specific
sl@0
   453
	validatation for the state of a transition before and after its execution.
sl@0
   454
	on the CUnitTest test class for a transition.
sl@0
   455
 */
sl@0
   456
class TUnitTest_AddTransition_TransitionValidator : public TTransitionValidator
sl@0
   457
	{
sl@0
   458
public:
sl@0
   459
	/**
sl@0
   460
		@fn				TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   461
		Intended Usage	:	
sl@0
   462
		@leave  		KErrNoMemory
sl@0
   463
		@since			7.0
sl@0
   464
		@param			aUTContext The context within which this transition is executing
sl@0
   465
	 */
sl@0
   466
	inline TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   467
sl@0
   468
	/**
sl@0
   469
		@fn				ValidatePreConditions()
sl@0
   470
		Intended Usage	: Implemented by the developer to check the
sl@0
   471
						end state of the transition behaviour.
sl@0
   472
		Error Condition	: Invalid pre-conditions
sl@0
   473
		@since			7.0
sl@0
   474
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   475
		@pre 			TUnitTest_AddTransition_TransitionValidator is fully constructed.
sl@0
   476
		@post			No change to the iUTContext class.
sl@0
   477
	*/
sl@0
   478
	virtual inline TBool ValidatePreConditions();
sl@0
   479
sl@0
   480
	/**
sl@0
   481
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   482
		Intended Usage	:	Implemented by the developer to check the
sl@0
   483
						end state of the transition behaviour.
sl@0
   484
						When overriding, if the transition calls an asynchronous function
sl@0
   485
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   486
						asynchronous function has been called and, secondly, after the 
sl@0
   487
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   488
						be used to distinguish between these two cases.
sl@0
   489
		Error Condition	: Invalid post-conditions.
sl@0
   490
		@since			7.0
sl@0
   491
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   492
						EAsyncCompleted if the function has completed.
sl@0
   493
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   494
		@pre 			TUnitTest_AddTransition_TransitionValidator is fully constructed.
sl@0
   495
		@post			No change to the iUTContext class.
sl@0
   496
	*/
sl@0
   497
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   498
	};	// TUnitTest_AddTransition_TransitionValidator
sl@0
   499
sl@0
   500
// ______________________________________________________________________________
sl@0
   501
//
sl@0
   502
/**
sl@0
   503
	@internalComponent
sl@0
   504
sl@0
   505
	Comments : Provide all the AddBlockingTransitionUnit Test's specific
sl@0
   506
	validatation for the state of a transition before and after its execution.
sl@0
   507
	on the CUnitTest test class for a transition.
sl@0
   508
 */
sl@0
   509
class TUnitTest_AddBlockingTransition_TransitionValidator : public TTransitionValidator
sl@0
   510
	{
sl@0
   511
public:
sl@0
   512
	/**
sl@0
   513
		@fn				TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   514
		Intended Usage	:	
sl@0
   515
		@leave  		KErrNoMemory
sl@0
   516
		@since			7.0
sl@0
   517
		@param			aUTContext The context within which this transition is executing
sl@0
   518
	 */
sl@0
   519
	inline TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   520
sl@0
   521
	/**
sl@0
   522
		@fn				ValidatePreConditions()
sl@0
   523
		Intended Usage	: Implemented by the developer to check the
sl@0
   524
						end state of the transition behaviour.
sl@0
   525
		Error Condition	: Invalid pre-conditions
sl@0
   526
		@since			7.0
sl@0
   527
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   528
		@pre 			TUnitTest_AddBlockingTransition_TransitionValidator is fully constructed.
sl@0
   529
		@post			No change to the iUTContext class.
sl@0
   530
	*/
sl@0
   531
	virtual inline TBool ValidatePreConditions();
sl@0
   532
sl@0
   533
	/**
sl@0
   534
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   535
		Intended Usage	:	Implemented by the developer to check the
sl@0
   536
						end state of the transition behaviour.
sl@0
   537
						When overriding, if the transition calls an asynchronous function
sl@0
   538
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   539
						asynchronous function has been called and, secondly, after the 
sl@0
   540
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   541
						be used to distinguish between these two cases.
sl@0
   542
		Error Condition	: Invalid post-conditions.
sl@0
   543
		@since			7.0
sl@0
   544
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   545
						EAsyncCompleted if the function has completed.
sl@0
   546
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   547
		@pre 			TUnitTest_AddBlockingTransition_TransitionValidator is fully constructed.
sl@0
   548
		@post			No change to the iUTContext class.
sl@0
   549
	*/
sl@0
   550
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   551
	};	// TUnitTest_AddBlockingTransition_TransitionValidator
sl@0
   552
sl@0
   553
// ______________________________________________________________________________
sl@0
   554
//
sl@0
   555
/**
sl@0
   556
	@internalComponent
sl@0
   557
sl@0
   558
	Comments : Provide all the AddLeaveErrorCodeUnit Test's specific
sl@0
   559
	validatation for the state of a transition before and after its execution.
sl@0
   560
	on the CUnitTest test class for a transition.
sl@0
   561
 */
sl@0
   562
class TUnitTest_AddLeaveErrorCode_TransitionValidator : public TTransitionValidator
sl@0
   563
	{
sl@0
   564
public:
sl@0
   565
	/**
sl@0
   566
		@fn				TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   567
		Intended Usage	:	
sl@0
   568
		@leave  		KErrNoMemory
sl@0
   569
		@since			7.0
sl@0
   570
		@param			aUTContext The context within which this transition is executing
sl@0
   571
	 */
sl@0
   572
	inline TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   573
sl@0
   574
	/**
sl@0
   575
		@fn				ValidatePreConditions()
sl@0
   576
		Intended Usage	: Implemented by the developer to check the
sl@0
   577
						end state of the transition behaviour.
sl@0
   578
		Error Condition	: Invalid pre-conditions
sl@0
   579
		@since			7.0
sl@0
   580
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   581
		@pre 			TUnitTest_AddLeaveErrorCode_TransitionValidator is fully constructed.
sl@0
   582
		@post			No change to the iUTContext class.
sl@0
   583
	*/
sl@0
   584
	virtual inline TBool ValidatePreConditions();
sl@0
   585
sl@0
   586
	/**
sl@0
   587
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   588
		Intended Usage	:	Implemented by the developer to check the
sl@0
   589
						end state of the transition behaviour.
sl@0
   590
						When overriding, if the transition calls an asynchronous function
sl@0
   591
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   592
						asynchronous function has been called and, secondly, after the 
sl@0
   593
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   594
						be used to distinguish between these two cases.
sl@0
   595
		Error Condition	: Invalid post-conditions.
sl@0
   596
		@since			7.0
sl@0
   597
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   598
						EAsyncCompleted if the function has completed.
sl@0
   599
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   600
		@pre 			TUnitTest_AddLeaveErrorCode_TransitionValidator is fully constructed.
sl@0
   601
		@post			No change to the iUTContext class.
sl@0
   602
	*/
sl@0
   603
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   604
	};	// TUnitTest_AddLeaveErrorCode_TransitionValidator
sl@0
   605
sl@0
   606
// ______________________________________________________________________________
sl@0
   607
//
sl@0
   608
/**
sl@0
   609
	@internalComponent
sl@0
   610
sl@0
   611
	Comments : Provide all the UnitTestNameUnit Test's specific
sl@0
   612
	validatation for the state of a transition before and after its execution.
sl@0
   613
	on the CUnitTest test class for a transition.
sl@0
   614
 */
sl@0
   615
class TUnitTest_UnitTestName_TransitionValidator : public TTransitionValidator
sl@0
   616
	{
sl@0
   617
public:
sl@0
   618
	/**
sl@0
   619
		@fn				TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   620
		Intended Usage	:	
sl@0
   621
		@leave  		KErrNoMemory
sl@0
   622
		@since			7.0
sl@0
   623
		@param			aUTContext The context within which this transition is executing
sl@0
   624
	 */
sl@0
   625
	inline TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
   626
sl@0
   627
	/**
sl@0
   628
		@fn				ValidatePreConditions()
sl@0
   629
		Intended Usage	: Implemented by the developer to check the
sl@0
   630
						end state of the transition behaviour.
sl@0
   631
		Error Condition	: Invalid pre-conditions
sl@0
   632
		@since			7.0
sl@0
   633
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   634
		@pre 			TUnitTest_UnitTestName_TransitionValidator is fully constructed.
sl@0
   635
		@post			No change to the iUTContext class.
sl@0
   636
	*/
sl@0
   637
	virtual inline TBool ValidatePreConditions();
sl@0
   638
sl@0
   639
	/**
sl@0
   640
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   641
		Intended Usage	:	Implemented by the developer to check the
sl@0
   642
						end state of the transition behaviour.
sl@0
   643
						When overriding, if the transition calls an asynchronous function
sl@0
   644
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   645
						asynchronous function has been called and, secondly, after the 
sl@0
   646
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   647
						be used to distinguish between these two cases.
sl@0
   648
		Error Condition	: Invalid post-conditions.
sl@0
   649
		@since			7.0
sl@0
   650
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   651
						EAsyncCompleted if the function has completed.
sl@0
   652
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   653
		@pre 			TUnitTest_UnitTestName_TransitionValidator is fully constructed.
sl@0
   654
		@post			No change to the iUTContext class.
sl@0
   655
	*/
sl@0
   656
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   657
	};	// TUnitTest_UnitTestName_TransitionValidator
sl@0
   658
sl@0
   659
sl@0
   660
sl@0
   661
#include "UnitTestTransitionValidation.inl"
sl@0
   662
sl@0
   663
#endif // __UNITTESTTRANSITIONVALIDATION_H__
sl@0
   664