os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitions.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 __UNITTESTTRANSITIONS_H__
sl@0
    19
#define __UNITTESTTRANSITIONS_H__
sl@0
    20
sl@0
    21
#include "TestUtilities.h"
sl@0
    22
#include "StateAccessor.h"
sl@0
    23
#include "LeakTestTransition.h"
sl@0
    24
#include <ecom/test_bed/datalogger.h>
sl@0
    25
#include <ecom/test_bed/unittest.h>
sl@0
    26
#include "UnitTestStateAccessor.h"
sl@0
    27
#include <ecom/test_bed/unittest.h>
sl@0
    28
sl@0
    29
#define CTransitionType CLeakTestTransition
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	@internalComponent
sl@0
    35
sl@0
    36
	Comments : Provide all the CUnitTest specific
sl@0
    37
	parameters and behaviour on the CUnitTest
sl@0
    38
	test class for a transition.
sl@0
    39
 */
sl@0
    40
class CUnitTest_UnitTestContext : public CUnitTestContext
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	/**
sl@0
    44
		@fn				CUnitTest_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    45
														MStateAccessor& aStateAccessor,
sl@0
    46
														MTransitionObserver& aObserver)
sl@0
    47
		Intended Usage	: Default constructor.
sl@0
    48
		Error Condition	: None. 
sl@0
    49
		@since			7.0
sl@0
    50
		@param			aDataLogger The output logging object.
sl@0
    51
		@param			aObserver The observer of this UnitTest's Transitions.
sl@0
    52
		@param			aStateAccessor WhiteBox state access to the CUnitTest class under test.
sl@0
    53
		@pre 			None.
sl@0
    54
		@post			CUnitTest_UnitTestContext is fully constructed, and initialised.
sl@0
    55
	*/
sl@0
    56
	inline CUnitTest_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    57
										MStateAccessor& aStateAccessor,
sl@0
    58
										MTransitionObserver& aObserver);
sl@0
    59
sl@0
    60
	/**
sl@0
    61
		@fn				~CUnitTest_UnitTestContext()
sl@0
    62
		Intended Usage	: Default Destructor
sl@0
    63
		@since			7.0
sl@0
    64
		@pre 			CUnitTest_UnitTestContext is fully constructed.
sl@0
    65
		@post			CUnitTest_UnitTestContext is fully destroyed
sl@0
    66
		*/
sl@0
    67
		virtual inline ~CUnitTest_UnitTestContext();
sl@0
    68
sl@0
    69
	
sl@0
    70
	CUnitTest* iUnitTest;
sl@0
    71
//	CUnitTestTestDerivation* iUnitTestDerived;
sl@0
    72
	const TDesC* iName;
sl@0
    73
	CDataLogger* iDataLogger;
sl@0
    74
	MUnitTestObserver* iUnitTestObserver;
sl@0
    75
	TTimeIntervalMicroSeconds32 iTimeAfter;
sl@0
    76
	CTransition* iTransition;
sl@0
    77
	TAny* iParams;
sl@0
    78
	CUnitTestTestDerivation* iUnitTestUnderTest;
sl@0
    79
	CTransition* iCurrentTransition;
sl@0
    80
	TInt iLeaveErrorCode;
sl@0
    81
sl@0
    82
	}; // CUnitTest_UnitTestContext
sl@0
    83
sl@0
    84
// ______________________________________________________________________________
sl@0
    85
//
sl@0
    86
/**
sl@0
    87
	@internalComponent
sl@0
    88
sl@0
    89
	Comments : Transition test of the CUnitTest::NewL method.
sl@0
    90
 */
sl@0
    91
class CUnitTest_NewL_Transition : public CTransitionType
sl@0
    92
	{
sl@0
    93
public:
sl@0
    94
	/**
sl@0
    95
		@fn				CUnitTest_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    96
																	TTransitionValidator& aValidator)
sl@0
    97
		Intended Usage	: Standard c'tor method.
sl@0
    98
		Error Condition	: None.
sl@0
    99
		@since			7.0
sl@0
   100
		@param			aUTContext The context this transition is operating in.
sl@0
   101
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   102
		@pre 			None.
sl@0
   103
		@post			CUnitTest_NewL_Transition is fully constructed.
sl@0
   104
	*/
sl@0
   105
	CUnitTest_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   106
													TTransitionValidator& aValidator);
sl@0
   107
	/**
sl@0
   108
		@fn				TransitMethodL()
sl@0
   109
		Intended Usage	: To execute the CUnitTest::NewL method for the test harness.
sl@0
   110
		Error Condition	: Leaves with an error code.
sl@0
   111
		@leave  		KErrNoMemory, (@see CUnitTest::NewL)
sl@0
   112
		@since			7.0
sl@0
   113
		@return			None
sl@0
   114
		@pre 			CUnitTest_NewL_Transition is fully constructed.
sl@0
   115
		@post			No change in the CUnitTest_NewL_Transition apart
sl@0
   116
						from iUnitTest, which may have changed state.
sl@0
   117
						(@see CUnitTest::NewL post-condition) for iUnitTest's new state.
sl@0
   118
	*/
sl@0
   119
	inline void TransitMethodL();
sl@0
   120
sl@0
   121
	/**
sl@0
   122
		@fn				Context() const
sl@0
   123
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   124
		Error Condition	: None.
sl@0
   125
		@since			7.0
sl@0
   126
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   127
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   128
		@post			No change in the CUnitTest_NewL_Transition
sl@0
   129
	*/
sl@0
   130
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   131
	};	// CUnitTest_NewL_Transition
sl@0
   132
sl@0
   133
// ______________________________________________________________________________
sl@0
   134
//
sl@0
   135
/**
sl@0
   136
	@internalComponent
sl@0
   137
sl@0
   138
	Comments : Transition test of the CUnitTest::Dtor method.
sl@0
   139
 */
sl@0
   140
class CUnitTest_Dtor_Transition : public CTransition
sl@0
   141
	{
sl@0
   142
public:
sl@0
   143
	/**
sl@0
   144
		@fn				CUnitTest_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   145
																	TTransitionValidator& aValidator)
sl@0
   146
		Intended Usage	: Standard c'tor method.
sl@0
   147
		Error Condition	: None.
sl@0
   148
		@since			7.0
sl@0
   149
		@param			aUTContext The context this transition is operating in.
sl@0
   150
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   151
		@pre 			None.
sl@0
   152
		@post			CUnitTest_Dtor_Transition is fully constructed.
sl@0
   153
	*/
sl@0
   154
	CUnitTest_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   155
													TTransitionValidator& aValidator);
sl@0
   156
	/**
sl@0
   157
		@fn				TransitMethodL()
sl@0
   158
		Intended Usage	: To execute the CUnitTest::Dtor method for the test harness.
sl@0
   159
		Error Condition	: Leaves with an error code.
sl@0
   160
		@leave  		KErrNoMemory, (@see CUnitTest::Dtor)
sl@0
   161
		@since			7.0
sl@0
   162
		@return			None
sl@0
   163
		@pre 			CUnitTest_Dtor_Transition is fully constructed.
sl@0
   164
		@post			No change in the CUnitTest_Dtor_Transition apart
sl@0
   165
						from iUnitTest, which may have changed state.
sl@0
   166
						(@see CUnitTest::Dtor post-condition) for iUnitTest's new state.
sl@0
   167
	*/
sl@0
   168
	inline void TransitMethodL();
sl@0
   169
sl@0
   170
	/**
sl@0
   171
		@fn				Context() const
sl@0
   172
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   173
		Error Condition	: None.
sl@0
   174
		@since			7.0
sl@0
   175
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   176
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   177
		@post			No change in the CUnitTest_Dtor_Transition
sl@0
   178
	*/
sl@0
   179
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   180
	};	// CUnitTest_Dtor_Transition
sl@0
   181
sl@0
   182
// ______________________________________________________________________________
sl@0
   183
//
sl@0
   184
/**
sl@0
   185
	@internalComponent
sl@0
   186
sl@0
   187
	Comments : Transition test of the CUnitTest::TransitionSetL method.
sl@0
   188
 */
sl@0
   189
class CUnitTest_TransitionSetL_Transition : public CTransitionType
sl@0
   190
	{
sl@0
   191
public:
sl@0
   192
	/**
sl@0
   193
		@fn				CUnitTest_TransitionSetL_Transition(CUnitTestContext& aUTContext,
sl@0
   194
																	TTransitionValidator& aValidator)
sl@0
   195
		Intended Usage	: Standard c'tor method.
sl@0
   196
		Error Condition	: None.
sl@0
   197
		@since			7.0
sl@0
   198
		@param			aUTContext The context this transition is operating in.
sl@0
   199
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   200
		@pre 			None.
sl@0
   201
		@post			CUnitTest_TransitionSetL_Transition is fully constructed.
sl@0
   202
	*/
sl@0
   203
	CUnitTest_TransitionSetL_Transition(CUnitTestContext& aUTContext,
sl@0
   204
													TTransitionValidator& aValidator);
sl@0
   205
	/**
sl@0
   206
		@fn				TransitMethodL()
sl@0
   207
		Intended Usage	: To execute the CUnitTest::TransitionSetL method for the test harness.
sl@0
   208
		Error Condition	: Leaves with an error code.
sl@0
   209
		@leave  		KErrNoMemory, (@see CUnitTest::TransitionSetL)
sl@0
   210
		@since			7.0
sl@0
   211
		@return			None
sl@0
   212
		@pre 			CUnitTest_TransitionSetL_Transition is fully constructed.
sl@0
   213
		@post			No change in the CUnitTest_TransitionSetL_Transition apart
sl@0
   214
						from iUnitTest, which may have changed state.
sl@0
   215
						(@see CUnitTest::TransitionSetL post-condition) for iUnitTest's new state.
sl@0
   216
	*/
sl@0
   217
	inline void TransitMethodL();
sl@0
   218
sl@0
   219
	/**
sl@0
   220
		@fn				Context() const
sl@0
   221
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   222
		Error Condition	: None.
sl@0
   223
		@since			7.0
sl@0
   224
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   225
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   226
		@post			No change in the CUnitTest_TransitionSetL_Transition
sl@0
   227
	*/
sl@0
   228
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   229
	};	// CUnitTest_TransitionSetL_Transition
sl@0
   230
sl@0
   231
// ______________________________________________________________________________
sl@0
   232
//
sl@0
   233
/**
sl@0
   234
	@internalComponent
sl@0
   235
sl@0
   236
	Comments : Transition test of the CUnitTest::GetCurrentTransition method.
sl@0
   237
 */
sl@0
   238
class CUnitTest_GetCurrentTransition_Transition : public CTransition
sl@0
   239
	{
sl@0
   240
public:
sl@0
   241
	/**
sl@0
   242
		@fn				CUnitTest_GetCurrentTransition_Transition(CUnitTestContext& aUTContext,
sl@0
   243
																	TTransitionValidator& aValidator)
sl@0
   244
		Intended Usage	: Standard c'tor method.
sl@0
   245
		Error Condition	: None.
sl@0
   246
		@since			7.0
sl@0
   247
		@param			aUTContext The context this transition is operating in.
sl@0
   248
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   249
		@pre 			None.
sl@0
   250
		@post			CUnitTest_GetCurrentTransition_Transition is fully constructed.
sl@0
   251
	*/
sl@0
   252
	CUnitTest_GetCurrentTransition_Transition(CUnitTestContext& aUTContext,
sl@0
   253
													TTransitionValidator& aValidator);
sl@0
   254
	/**
sl@0
   255
		@fn				TransitMethodL()
sl@0
   256
		Intended Usage	: To execute the CUnitTest::GetCurrentTransition method for the test harness.
sl@0
   257
		Error Condition	: Leaves with an error code.
sl@0
   258
		@leave  		KErrNoMemory, (@see CUnitTest::GetCurrentTransition)
sl@0
   259
		@since			7.0
sl@0
   260
		@return			None
sl@0
   261
		@pre 			CUnitTest_GetCurrentTransition_Transition is fully constructed.
sl@0
   262
		@post			No change in the CUnitTest_GetCurrentTransition_Transition apart
sl@0
   263
						from iUnitTest, which may have changed state.
sl@0
   264
						(@see CUnitTest::GetCurrentTransition post-condition) for iUnitTest's new state.
sl@0
   265
	*/
sl@0
   266
	inline void TransitMethodL();
sl@0
   267
sl@0
   268
	/**
sl@0
   269
		@fn				Context() const
sl@0
   270
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   271
		Error Condition	: None.
sl@0
   272
		@since			7.0
sl@0
   273
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   274
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   275
		@post			No change in the CUnitTest_GetCurrentTransition_Transition
sl@0
   276
	*/
sl@0
   277
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   278
	};	// CUnitTest_GetCurrentTransition_Transition
sl@0
   279
sl@0
   280
// ______________________________________________________________________________
sl@0
   281
//
sl@0
   282
/**
sl@0
   283
	@internalComponent
sl@0
   284
	
sl@0
   285
	Comments : Transition test of the CUnitTest::SetCurrentTransition method.
sl@0
   286
 */
sl@0
   287
class CUnitTest_SetCurrentTransition_Transition : public CTransition
sl@0
   288
	{
sl@0
   289
public:
sl@0
   290
	/**
sl@0
   291
		@fn				CUnitTest_SetCurrentTransition_Transition(CUnitTestContext& aUTContext,
sl@0
   292
																	TTransitionValidator& aValidator)
sl@0
   293
		Intended Usage	: Standard c'tor method.
sl@0
   294
		Error Condition	: None.
sl@0
   295
		@since			7.0
sl@0
   296
		@param			aUTContext The context this transition is operating in.
sl@0
   297
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   298
		@pre 			None.
sl@0
   299
		@post			CUnitTest_SetCurrentTransition_Transition is fully constructed.
sl@0
   300
	*/
sl@0
   301
	CUnitTest_SetCurrentTransition_Transition(CUnitTestContext& aUTContext,
sl@0
   302
													TTransitionValidator& aValidator);
sl@0
   303
	/**
sl@0
   304
		@fn				TransitMethodL()
sl@0
   305
		Intended Usage	: To execute the CUnitTest::SetCurrentTransition method for the test harness.
sl@0
   306
		Error Condition	: Leaves with an error code.
sl@0
   307
		@leave  		KErrNoMemory, (@see CUnitTest::SetCurrentTransition)
sl@0
   308
		@since			7.0
sl@0
   309
		@return			None
sl@0
   310
		@pre 			CUnitTest_SetCurrentTransition_Transition is fully constructed.
sl@0
   311
		@post			No change in the CUnitTest_SetCurrentTransition_Transition apart
sl@0
   312
						from iUnitTest, which may have changed state.
sl@0
   313
						(@see CUnitTest::SetCurrentTransition post-condition) for iUnitTest's new state.
sl@0
   314
	*/
sl@0
   315
	inline void TransitMethodL();
sl@0
   316
sl@0
   317
	/**
sl@0
   318
		@fn				Context() const
sl@0
   319
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   320
		Error Condition	: None.
sl@0
   321
		@since			7.0
sl@0
   322
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   323
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   324
		@post			No change in the CUnitTest_SetCurrentTransition_Transition
sl@0
   325
	*/
sl@0
   326
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   327
	};	// CUnitTest_SetCurrentTransition_Transition
sl@0
   328
sl@0
   329
// ______________________________________________________________________________
sl@0
   330
//
sl@0
   331
/**
sl@0
   332
	@internalComponent
sl@0
   333
sl@0
   334
	Comments : Transition test of the CUnitTest::SetParametersL method.
sl@0
   335
 */
sl@0
   336
class CUnitTest_SetParametersL_Transition : public CTransitionType
sl@0
   337
	{
sl@0
   338
public:
sl@0
   339
	/**
sl@0
   340
		@fn				CUnitTest_SetParametersL_Transition(CUnitTestContext& aUTContext,
sl@0
   341
																	TTransitionValidator& aValidator)
sl@0
   342
		Intended Usage	: Standard c'tor method.
sl@0
   343
		Error Condition	: None.
sl@0
   344
		@since			7.0
sl@0
   345
		@param			aUTContext The context this transition is operating in.
sl@0
   346
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   347
		@pre 			None.
sl@0
   348
		@post			CUnitTest_SetParametersL_Transition is fully constructed.
sl@0
   349
	*/
sl@0
   350
	CUnitTest_SetParametersL_Transition(CUnitTestContext& aUTContext,
sl@0
   351
													TTransitionValidator& aValidator);
sl@0
   352
	/**
sl@0
   353
		@fn				TransitMethodL()
sl@0
   354
		Intended Usage	: To execute the CUnitTest::SetParametersL method for the test harness.
sl@0
   355
		Error Condition	: Leaves with an error code.
sl@0
   356
		@leave  		KErrNoMemory, (@see CUnitTest::SetParametersL)
sl@0
   357
		@since			7.0
sl@0
   358
		@return			None
sl@0
   359
		@pre 			CUnitTest_SetParametersL_Transition is fully constructed.
sl@0
   360
		@post			No change in the CUnitTest_SetParametersL_Transition apart
sl@0
   361
						from iUnitTest, which may have changed state.
sl@0
   362
						(@see CUnitTest::SetParametersL post-condition) for iUnitTest's new state.
sl@0
   363
	*/
sl@0
   364
	inline void TransitMethodL();
sl@0
   365
sl@0
   366
	/**
sl@0
   367
		@fn				Context() const
sl@0
   368
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   369
		Error Condition	: None.
sl@0
   370
		@since			7.0
sl@0
   371
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   372
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   373
		@post			No change in the CUnitTest_SetParametersL_Transition
sl@0
   374
	*/
sl@0
   375
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   376
	};	// CUnitTest_SetParametersL_Transition
sl@0
   377
sl@0
   378
// ______________________________________________________________________________
sl@0
   379
//
sl@0
   380
/**
sl@0
   381
	@internalComponent
sl@0
   382
sl@0
   383
	Comments : Transition test of the CUnitTest::PrepareUnitTestL method.
sl@0
   384
 */
sl@0
   385
class CUnitTest_PrepareUnitTestL_Transition : public CTransitionType
sl@0
   386
	{
sl@0
   387
public:
sl@0
   388
	/**
sl@0
   389
		@fn				CUnitTest_PrepareUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   390
																	TTransitionValidator& aValidator)
sl@0
   391
		Intended Usage	: Standard c'tor method.
sl@0
   392
		Error Condition	: None.
sl@0
   393
		@since			7.0
sl@0
   394
		@param			aUTContext The context this transition is operating in.
sl@0
   395
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   396
		@pre 			None.
sl@0
   397
		@post			CUnitTest_PrepareUnitTestL_Transition is fully constructed.
sl@0
   398
	*/
sl@0
   399
	CUnitTest_PrepareUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   400
													TTransitionValidator& aValidator);
sl@0
   401
	/**
sl@0
   402
		@fn				TransitMethodL()
sl@0
   403
		Intended Usage	: To execute the CUnitTest::PrepareUnitTestL method for the test harness.
sl@0
   404
		Error Condition	: Leaves with an error code.
sl@0
   405
		@leave  		KErrNoMemory, (@see CUnitTest::PrepareUnitTestL)
sl@0
   406
		@since			7.0
sl@0
   407
		@return			None
sl@0
   408
		@pre 			CUnitTest_PrepareUnitTestL_Transition is fully constructed.
sl@0
   409
		@post			No change in the CUnitTest_PrepareUnitTestL_Transition apart
sl@0
   410
						from iUnitTest, which may have changed state.
sl@0
   411
						(@see CUnitTest::PrepareUnitTestL post-condition) for iUnitTest's new state.
sl@0
   412
	*/
sl@0
   413
	inline void TransitMethodL();
sl@0
   414
sl@0
   415
	/**
sl@0
   416
		@fn				Context() const
sl@0
   417
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   418
		Error Condition	: None.
sl@0
   419
		@since			7.0
sl@0
   420
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   421
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   422
		@post			No change in the CUnitTest_PrepareUnitTestL_Transition
sl@0
   423
	*/
sl@0
   424
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   425
	};	// CUnitTest_PrepareUnitTestL_Transition
sl@0
   426
sl@0
   427
// ______________________________________________________________________________
sl@0
   428
//
sl@0
   429
/**
sl@0
   430
	@internalComponent
sl@0
   431
sl@0
   432
	Comments : Transition test of the CUnitTest::RunTest method.
sl@0
   433
 */
sl@0
   434
class CUnitTest_RunTest_Transition : public CTransition
sl@0
   435
	{
sl@0
   436
public:
sl@0
   437
	/**
sl@0
   438
		@fn				CUnitTest_RunTest_Transition(CUnitTestContext& aUTContext,
sl@0
   439
																	TTransitionValidator& aValidator)
sl@0
   440
		Intended Usage	: Standard c'tor method.
sl@0
   441
		Error Condition	: None.
sl@0
   442
		@since			7.0
sl@0
   443
		@param			aUTContext The context this transition is operating in.
sl@0
   444
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   445
		@pre 			None.
sl@0
   446
		@post			CUnitTest_RunTest_Transition is fully constructed.
sl@0
   447
	*/
sl@0
   448
	CUnitTest_RunTest_Transition(CUnitTestContext& aUTContext,
sl@0
   449
													TTransitionValidator& aValidator);
sl@0
   450
	/**
sl@0
   451
		@fn				TransitMethodL()
sl@0
   452
		Intended Usage	: To execute the CUnitTest::RunTest method for the test harness.
sl@0
   453
		Error Condition	: Leaves with an error code.
sl@0
   454
		@leave  		KErrNoMemory, (@see CUnitTest::RunTest)
sl@0
   455
		@since			7.0
sl@0
   456
		@return			None
sl@0
   457
		@pre 			CUnitTest_RunTest_Transition is fully constructed.
sl@0
   458
		@post			No change in the CUnitTest_RunTest_Transition apart
sl@0
   459
						from iUnitTest, which may have changed state.
sl@0
   460
						(@see CUnitTest::RunTest post-condition) for iUnitTest's new state.
sl@0
   461
	*/
sl@0
   462
	inline void TransitMethodL();
sl@0
   463
sl@0
   464
	/**
sl@0
   465
		@fn				Context() const
sl@0
   466
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   467
		Error Condition	: None.
sl@0
   468
		@since			7.0
sl@0
   469
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   470
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   471
		@post			No change in the CUnitTest_RunTest_Transition
sl@0
   472
	*/
sl@0
   473
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   474
	};	// CUnitTest_RunTest_Transition
sl@0
   475
sl@0
   476
sl@0
   477
// ______________________________________________________________________________
sl@0
   478
//
sl@0
   479
/**
sl@0
   480
	@internalComponent
sl@0
   481
sl@0
   482
	Comments : Transition test of the CUnitTest::AddTransitionL method.
sl@0
   483
 */
sl@0
   484
class CUnitTest_AddTransitionL_Transition : public CTransitionType
sl@0
   485
	{
sl@0
   486
public:
sl@0
   487
	/**
sl@0
   488
		@fn				CUnitTest_AddTransitionL_Transition(CUnitTestContext& aUTContext,
sl@0
   489
																	TTransitionValidator& aValidator)
sl@0
   490
		Intended Usage	: Standard c'tor method.
sl@0
   491
		Error Condition	: None.
sl@0
   492
		@since			7.0
sl@0
   493
		@param			aUTContext The context this transition is operating in.
sl@0
   494
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   495
		@pre 			None.
sl@0
   496
		@post			CUnitTest_AddTransitionL_Transition is fully constructed.
sl@0
   497
	*/
sl@0
   498
	CUnitTest_AddTransitionL_Transition(CUnitTestContext& aUTContext,
sl@0
   499
													TTransitionValidator& aValidator);
sl@0
   500
	/**
sl@0
   501
		@fn				TransitMethodL()
sl@0
   502
		Intended Usage	: To execute the CUnitTest::AddTransitionL method for the test harness.
sl@0
   503
		Error Condition	: Leaves with an error code.
sl@0
   504
		@leave  		KErrNoMemory, (@see CUnitTest::AddTransitionL)
sl@0
   505
		@since			7.0
sl@0
   506
		@return			None
sl@0
   507
		@pre 			CUnitTest_AddTransitionL_Transition is fully constructed.
sl@0
   508
		@post			No change in the CUnitTest_AddTransitionL_Transition apart
sl@0
   509
						from iUnitTest, which may have changed state.
sl@0
   510
						(@see CUnitTest::AddTransitionL post-condition) for iUnitTest's new state.
sl@0
   511
	*/
sl@0
   512
	inline void TransitMethodL();
sl@0
   513
sl@0
   514
	/**
sl@0
   515
		@fn				Context() const
sl@0
   516
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   517
		Error Condition	: None.
sl@0
   518
		@since			7.0
sl@0
   519
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   520
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   521
		@post			No change in the CUnitTest_AddTransitionL_Transition
sl@0
   522
	*/
sl@0
   523
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   524
	};	// CUnitTest_AddTransitionL_Transition
sl@0
   525
sl@0
   526
// ______________________________________________________________________________
sl@0
   527
//
sl@0
   528
/**
sl@0
   529
	@internalComponent
sl@0
   530
 
sl@0
   531
	Comments : Transition test of the CUnitTest::AddBlockingTransitionL method.
sl@0
   532
 */
sl@0
   533
class CUnitTest_AddBlockingTransitionL_Transition : public CTransitionType
sl@0
   534
	{
sl@0
   535
public:
sl@0
   536
	/**
sl@0
   537
		@fn				CUnitTest_AddBlockingTransitionL_Transition(CUnitTestContext& aUTContext,
sl@0
   538
																	TTransitionValidator& aValidator)
sl@0
   539
		Intended Usage	: Standard c'tor method.
sl@0
   540
		Error Condition	: None.
sl@0
   541
		@since			7.0
sl@0
   542
		@param			aUTContext The context this transition is operating in.
sl@0
   543
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   544
		@pre 			None.
sl@0
   545
		@post			CUnitTest_AddBlockingTransitionL_Transition is fully constructed.
sl@0
   546
	*/
sl@0
   547
	CUnitTest_AddBlockingTransitionL_Transition(CUnitTestContext& aUTContext,
sl@0
   548
													TTransitionValidator& aValidator);
sl@0
   549
	/**
sl@0
   550
		@fn				TransitMethodL()
sl@0
   551
		Intended Usage	: To execute the CUnitTest::AddBlockingTransitionL method for the test harness.
sl@0
   552
		Error Condition	: Leaves with an error code.
sl@0
   553
		@leave  		KErrNoMemory, (@see CUnitTest::AddBlockingTransitionL)
sl@0
   554
		@since			7.0
sl@0
   555
		@return			None
sl@0
   556
		@pre 			CUnitTest_AddBlockingTransitionL_Transition is fully constructed.
sl@0
   557
		@post			No change in the CUnitTest_AddBlockingTransitionL_Transition apart
sl@0
   558
						from iUnitTest, which may have changed state.
sl@0
   559
						(@see CUnitTest::AddBlockingTransitionL post-condition) for iUnitTest's new state.
sl@0
   560
	*/
sl@0
   561
	inline void TransitMethodL();
sl@0
   562
sl@0
   563
	/**
sl@0
   564
		@fn				Context() const
sl@0
   565
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   566
		Error Condition	: None.
sl@0
   567
		@since			7.0
sl@0
   568
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   569
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   570
		@post			No change in the CUnitTest_AddBlockingTransitionL_Transition
sl@0
   571
	*/
sl@0
   572
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   573
	};	// CUnitTest_AddBlockingTransitionL_Transition
sl@0
   574
sl@0
   575
// ______________________________________________________________________________
sl@0
   576
//
sl@0
   577
/**
sl@0
   578
	@internalComponent
sl@0
   579
sl@0
   580
	Comments : Transition test of the CUnitTest::AddLeaveErrorCodeL method.
sl@0
   581
 */
sl@0
   582
class CUnitTest_AddLeaveErrorCodeL_Transition : public CTransitionType
sl@0
   583
	{
sl@0
   584
public:
sl@0
   585
	/**
sl@0
   586
		@fn				CUnitTest_AddLeaveErrorCodeL_Transition(CUnitTestContext& aUTContext,
sl@0
   587
																	TTransitionValidator& aValidator)
sl@0
   588
		Intended Usage	: Standard c'tor method.
sl@0
   589
		Error Condition	: None.
sl@0
   590
		@since			7.0
sl@0
   591
		@param			aUTContext The context this transition is operating in.
sl@0
   592
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   593
		@pre 			None.
sl@0
   594
		@post			CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed.
sl@0
   595
	*/
sl@0
   596
	CUnitTest_AddLeaveErrorCodeL_Transition(CUnitTestContext& aUTContext,
sl@0
   597
													TTransitionValidator& aValidator);
sl@0
   598
	/**
sl@0
   599
		@fn				TransitMethodL()
sl@0
   600
		Intended Usage	: To execute the CUnitTest::AddLeaveErrorCodeL method for the test harness.
sl@0
   601
		Error Condition	: Leaves with an error code.
sl@0
   602
		@leave  		KErrNoMemory, (@see CUnitTest::AddLeaveErrorCodeL)
sl@0
   603
		@since			7.0
sl@0
   604
		@return			None
sl@0
   605
		@pre 			CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed.
sl@0
   606
		@post			No change in the CUnitTest_AddLeaveErrorCodeL_Transition apart
sl@0
   607
						from iUnitTest, which may have changed state.
sl@0
   608
						(@see CUnitTest::AddLeaveErrorCodeL post-condition) for iUnitTest's new state.
sl@0
   609
	*/
sl@0
   610
	inline void TransitMethodL();
sl@0
   611
sl@0
   612
	/**
sl@0
   613
		@fn				Context() const
sl@0
   614
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   615
		Error Condition	: None.
sl@0
   616
		@since			7.0
sl@0
   617
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   618
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   619
		@post			No change in the CUnitTest_AddLeaveErrorCodeL_Transition
sl@0
   620
	*/
sl@0
   621
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   622
	};	// CUnitTest_AddLeaveErrorCodeL_Transition
sl@0
   623
sl@0
   624
// ______________________________________________________________________________
sl@0
   625
//
sl@0
   626
/**
sl@0
   627
	@internalComponent
sl@0
   628
sl@0
   629
	Comments : Transition test of the CUnitTest::UnitTestName method.
sl@0
   630
 */
sl@0
   631
class CUnitTest_UnitTestName_Transition : public CTransition
sl@0
   632
	{
sl@0
   633
public:
sl@0
   634
	/**
sl@0
   635
		@fn				CUnitTest_UnitTestName_Transition(CUnitTestContext& aUTContext,
sl@0
   636
																	TTransitionValidator& aValidator)
sl@0
   637
		Intended Usage	: Standard c'tor method.
sl@0
   638
		Error Condition	: None.
sl@0
   639
		@since			7.0
sl@0
   640
		@param			aUTContext The context this transition is operating in.
sl@0
   641
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   642
		@pre 			None.
sl@0
   643
		@post			CUnitTest_UnitTestName_Transition is fully constructed.
sl@0
   644
	*/
sl@0
   645
	CUnitTest_UnitTestName_Transition(CUnitTestContext& aUTContext,
sl@0
   646
													TTransitionValidator& aValidator);
sl@0
   647
	/**
sl@0
   648
		@fn				TransitMethodL()
sl@0
   649
		Intended Usage	: To execute the CUnitTest::UnitTestName method for the test harness.
sl@0
   650
		Error Condition	: Leaves with an error code.
sl@0
   651
		@leave  		KErrNoMemory, (@see CUnitTest::UnitTestName)
sl@0
   652
		@since			7.0
sl@0
   653
		@return			None
sl@0
   654
		@pre 			CUnitTest_UnitTestName_Transition is fully constructed.
sl@0
   655
		@post			No change in the CUnitTest_UnitTestName_Transition apart
sl@0
   656
						from iUnitTest, which may have changed state.
sl@0
   657
						(@see CUnitTest::UnitTestName post-condition) for iUnitTest's new state.
sl@0
   658
	*/
sl@0
   659
	inline void TransitMethodL();
sl@0
   660
sl@0
   661
	/**
sl@0
   662
		@fn				Context() const
sl@0
   663
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   664
		Error Condition	: None.
sl@0
   665
		@since			7.0
sl@0
   666
		@return			The unit test context cast to a CUnitTest_UnitTestContext
sl@0
   667
		@pre 			iUTContext is a valid CUnitTest_UnitTestContext.
sl@0
   668
		@post			No change in the CUnitTest_UnitTestName_Transition
sl@0
   669
	*/
sl@0
   670
	inline CUnitTest_UnitTestContext& Context() const;
sl@0
   671
	};	// CUnitTest_UnitTestName_Transition
sl@0
   672
sl@0
   673
sl@0
   674
// Add additional Transition class definitions here...
sl@0
   675
sl@0
   676
#include "UnitTestTransitions.inl"
sl@0
   677
sl@0
   678
#include "UnitTestUnitTestContext.inl"
sl@0
   679
sl@0
   680
#endif // __UNITTESTTRANSITIONS_H__
sl@0
   681