os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitions.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 CComponentTester class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __COMPONENTTESTERTRANSITIONS_H__
sl@0
    19
#define __COMPONENTTESTERTRANSITIONS_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 "ComponentTester.h"
sl@0
    26
#include "ComponentTesterStateAccessor.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 CComponentTester specific
sl@0
    37
	parameters and behaviour on the CComponentTester
sl@0
    38
	test class for a transition.
sl@0
    39
 */
sl@0
    40
class CComponentTester_UnitTestContext : public CUnitTestContext
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
	/**
sl@0
    44
		@fn				CComponentTester_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 CComponentTester class under test.
sl@0
    53
		@pre 			None.
sl@0
    54
		@post			CComponentTester_UnitTestContext is fully constructed, and initialised.
sl@0
    55
	*/
sl@0
    56
	inline CComponentTester_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    57
										MStateAccessor& aStateAccessor,
sl@0
    58
										MTransitionObserver& aObserver);
sl@0
    59
sl@0
    60
	/**
sl@0
    61
		@fn				~CComponentTester_UnitTestContext()
sl@0
    62
		Intended Usage	: Default Destructor
sl@0
    63
		@since			7.0
sl@0
    64
		@pre 			CComponentTester_UnitTestContext is fully constructed.
sl@0
    65
		@post			CComponentTester_UnitTestContext is fully destroyed
sl@0
    66
		*/
sl@0
    67
		virtual inline ~CComponentTester_UnitTestContext();
sl@0
    68
sl@0
    69
	/** The instance of the class under test */
sl@0
    70
	CComponentTester* iComponentTester;
sl@0
    71
	/** The data logger for the ComponentTester to use */
sl@0
    72
	CDataLogger* iDataLogger;
sl@0
    73
	/** An observer to inform when the test has been completed */
sl@0
    74
	MComponentTestObserver* iObserver;
sl@0
    75
	/** The unit test for the ComponentTester to use */
sl@0
    76
	CUnitTest* iUnitTest;
sl@0
    77
	/** An array of the tests to be run by ComponentTester */
sl@0
    78
	RPointerArray<TTestInfo> iTests;
sl@0
    79
	/** A class derived from the class under test */
sl@0
    80
	CComponentTesterTestDerivation* iComponentUnderTest;
sl@0
    81
	}; // CComponentTester_UnitTestContext
sl@0
    82
sl@0
    83
// ______________________________________________________________________________
sl@0
    84
//
sl@0
    85
/**
sl@0
    86
	@internalComponent
sl@0
    87
sl@0
    88
	Comments : Transition test of the CComponentTester::NewL method.
sl@0
    89
 */
sl@0
    90
class CComponentTester_NewL_Transition : public CTransitionType
sl@0
    91
	{
sl@0
    92
public:
sl@0
    93
	/**
sl@0
    94
		@fn				CComponentTester_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    95
																	TTransitionValidator& aValidator)
sl@0
    96
		Intended Usage	: Standard c'tor method.
sl@0
    97
		Error Condition	: None.
sl@0
    98
		@since			7.0
sl@0
    99
		@param			aUTContext The context this transition is operating in.
sl@0
   100
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   101
		@pre 			None.
sl@0
   102
		@post			CComponentTester_NewL_Transition is fully constructed.
sl@0
   103
	*/
sl@0
   104
	CComponentTester_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   105
													TTransitionValidator& aValidator);
sl@0
   106
	/**
sl@0
   107
		@fn				TransitMethodL()
sl@0
   108
		Intended Usage	: To execute the CComponentTester::NewL method for the test harness.
sl@0
   109
		Error Condition	: Leaves with an error code.
sl@0
   110
		@leave  		KErrNoMemory, (@see CComponentTester::NewL)
sl@0
   111
		@since			7.0
sl@0
   112
		@return			None
sl@0
   113
		@pre 			CComponentTester_NewL_Transition is fully constructed.
sl@0
   114
		@post			No change in the CComponentTester_NewL_Transition apart
sl@0
   115
						from iComponentTester, which may have changed state.
sl@0
   116
						(@see CComponentTester::NewL post-condition) for iComponentTester's new state.
sl@0
   117
	*/
sl@0
   118
	inline void TransitMethodL();
sl@0
   119
sl@0
   120
	/**
sl@0
   121
		@fn				Context() const
sl@0
   122
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   123
		Error Condition	: None.
sl@0
   124
		@since			7.0
sl@0
   125
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   126
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   127
		@post			No change in the CComponentTester_NewL_Transition
sl@0
   128
	*/
sl@0
   129
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   130
	};	// CComponentTester_NewL_Transition
sl@0
   131
sl@0
   132
// ______________________________________________________________________________
sl@0
   133
//
sl@0
   134
/**
sl@0
   135
	@internalComponent
sl@0
   136
sl@0
   137
	Comments : Transition test of the CComponentTester::Dtor method.
sl@0
   138
 */
sl@0
   139
class CComponentTester_Dtor_Transition : public CTransition
sl@0
   140
	{
sl@0
   141
public:
sl@0
   142
	/**
sl@0
   143
		@fn				CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   144
																	TTransitionValidator& aValidator)
sl@0
   145
		Intended Usage	: Standard c'tor method.
sl@0
   146
		Error Condition	: None.
sl@0
   147
		@since			7.0
sl@0
   148
		@param			aUTContext The context this transition is operating in.
sl@0
   149
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   150
		@pre 			None.
sl@0
   151
		@post			CComponentTester_Dtor_Transition is fully constructed.
sl@0
   152
	*/
sl@0
   153
	CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   154
													TTransitionValidator& aValidator);
sl@0
   155
	/**
sl@0
   156
		@fn				TransitMethodL()
sl@0
   157
		Intended Usage	: To execute the CComponentTester::Dtor method for the test harness.
sl@0
   158
		Error Condition	: Leaves with an error code.
sl@0
   159
		@leave  		KErrNoMemory, (@see CComponentTester::Dtor)
sl@0
   160
		@since			7.0
sl@0
   161
		@return			None
sl@0
   162
		@pre 			CComponentTester_Dtor_Transition is fully constructed.
sl@0
   163
		@post			No change in the CComponentTester_Dtor_Transition apart
sl@0
   164
						from iComponentTester, which may have changed state.
sl@0
   165
						(@see CComponentTester::Dtor post-condition) for iComponentTester's new state.
sl@0
   166
	*/
sl@0
   167
	inline void TransitMethodL();
sl@0
   168
sl@0
   169
	/**
sl@0
   170
		@fn				Context() const
sl@0
   171
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   172
		Error Condition	: None.
sl@0
   173
		@since			7.0
sl@0
   174
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   175
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   176
		@post			No change in the CComponentTester_Dtor_Transition
sl@0
   177
	*/
sl@0
   178
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   179
	};	// CComponentTester_Dtor_Transition
sl@0
   180
sl@0
   181
// ______________________________________________________________________________
sl@0
   182
//
sl@0
   183
/**
sl@0
   184
	@internalComponent
sl@0
   185
sl@0
   186
	Comments : Transition test of the CComponentTester::TransitionSetsL method.
sl@0
   187
 */
sl@0
   188
class CComponentTester_TransitionSetsL_Transition : public CTransitionType
sl@0
   189
	{
sl@0
   190
public:
sl@0
   191
	/**
sl@0
   192
		@fn				CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext,
sl@0
   193
																	TTransitionValidator& aValidator)
sl@0
   194
		Intended Usage	: Standard c'tor method.
sl@0
   195
		Error Condition	: None.
sl@0
   196
		@since			7.0
sl@0
   197
		@param			aUTContext The context this transition is operating in.
sl@0
   198
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   199
		@pre 			None.
sl@0
   200
		@post			CComponentTester_TransitionSetsL_Transition is fully constructed.
sl@0
   201
	*/
sl@0
   202
	CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext,
sl@0
   203
													TTransitionValidator& aValidator);
sl@0
   204
	/**
sl@0
   205
		@fn				TransitMethodL()
sl@0
   206
		Intended Usage	: To execute the CComponentTester::TransitionSetsL method for the test harness.
sl@0
   207
		Error Condition	: Leaves with an error code.
sl@0
   208
		@leave  		KErrNoMemory, (@see CComponentTester::TransitionSetsL)
sl@0
   209
		@since			7.0
sl@0
   210
		@return			None
sl@0
   211
		@pre 			CComponentTester_TransitionSetsL_Transition is fully constructed.
sl@0
   212
		@post			No change in the CComponentTester_TransitionSetsL_Transition apart
sl@0
   213
						from iComponentTester, which may have changed state.
sl@0
   214
						(@see CComponentTester::TransitionSetsL post-condition) for iComponentTester's new state.
sl@0
   215
	*/
sl@0
   216
	inline void TransitMethodL();
sl@0
   217
sl@0
   218
	/**
sl@0
   219
		@fn				Context() const
sl@0
   220
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   221
		Error Condition	: None.
sl@0
   222
		@since			7.0
sl@0
   223
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   224
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   225
		@post			No change in the CComponentTester_TransitionSetsL_Transition
sl@0
   226
	*/
sl@0
   227
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   228
	};	// CComponentTester_TransitionSetsL_Transition
sl@0
   229
sl@0
   230
// ______________________________________________________________________________
sl@0
   231
//
sl@0
   232
/**
sl@0
   233
	@internalComponent
sl@0
   234
sl@0
   235
	Comments : Transition test of the CComponentTester::AddUnitTestL method.
sl@0
   236
 */
sl@0
   237
class CComponentTester_AddUnitTestL_Transition : public CTransitionType
sl@0
   238
	{
sl@0
   239
public:
sl@0
   240
	/**
sl@0
   241
		@fn				CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   242
																	TTransitionValidator& aValidator)
sl@0
   243
		Intended Usage	: Standard c'tor method.
sl@0
   244
		Error Condition	: None.
sl@0
   245
		@since			7.0
sl@0
   246
		@param			aUTContext The context this transition is operating in.
sl@0
   247
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   248
		@pre 			None.
sl@0
   249
		@post			CComponentTester_AddUnitTestL_Transition is fully constructed.
sl@0
   250
	*/
sl@0
   251
	CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   252
													TTransitionValidator& aValidator);
sl@0
   253
	/**
sl@0
   254
		@fn				TransitMethodL()
sl@0
   255
		Intended Usage	: To execute the CComponentTester::AddUnitTestL method for the test harness.
sl@0
   256
		Error Condition	: Leaves with an error code.
sl@0
   257
		@leave  		KErrNoMemory, (@see CComponentTester::AddUnitTestL)
sl@0
   258
		@since			7.0
sl@0
   259
		@return			None
sl@0
   260
		@pre 			CComponentTester_AddUnitTestL_Transition is fully constructed.
sl@0
   261
		@post			No change in the CComponentTester_AddUnitTestL_Transition apart
sl@0
   262
						from iComponentTester, which may have changed state.
sl@0
   263
						(@see CComponentTester::AddUnitTestL post-condition) for iComponentTester's new state.
sl@0
   264
	*/
sl@0
   265
	inline void TransitMethodL();
sl@0
   266
sl@0
   267
	/**
sl@0
   268
		@fn				Context() const
sl@0
   269
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   270
		Error Condition	: None.
sl@0
   271
		@since			7.0
sl@0
   272
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   273
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   274
		@post			No change in the CComponentTester_AddUnitTestL_Transition
sl@0
   275
	*/
sl@0
   276
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   277
	};	// CComponentTester_AddUnitTestL_Transition
sl@0
   278
sl@0
   279
// ______________________________________________________________________________
sl@0
   280
//
sl@0
   281
/**
sl@0
   282
	@internalComponent
sl@0
   283
sl@0
   284
	Comments : Transition test of the CComponentTester::AddParamUnitTestL method.
sl@0
   285
 */
sl@0
   286
class CComponentTester_AddParamUnitTestL_Transition : public CTransitionType
sl@0
   287
	{
sl@0
   288
public:
sl@0
   289
	/**
sl@0
   290
		@fn				CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   291
																	TTransitionValidator& aValidator)
sl@0
   292
		Intended Usage	: Standard c'tor method.
sl@0
   293
		Error Condition	: None.
sl@0
   294
		@since			7.0
sl@0
   295
		@param			aUTContext The context this transition is operating in.
sl@0
   296
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   297
		@pre 			None.
sl@0
   298
		@post			CComponentTester_AddParamUnitTestL_Transition is fully constructed.
sl@0
   299
	*/
sl@0
   300
	CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext,
sl@0
   301
													TTransitionValidator& aValidator);
sl@0
   302
	/**
sl@0
   303
		@fn				TransitMethodL()
sl@0
   304
		Intended Usage	: To execute the CComponentTester::AddParamUnitTestL method for the test harness.
sl@0
   305
		Error Condition	: Leaves with an error code.
sl@0
   306
		@leave  		KErrNoMemory, (@see CComponentTester::AddParamUnitTestL)
sl@0
   307
		@since			7.0
sl@0
   308
		@return			None
sl@0
   309
		@pre 			CComponentTester_AddParamUnitTestL_Transition is fully constructed.
sl@0
   310
		@post			No change in the CComponentTester_AddParamUnitTestL_Transition apart
sl@0
   311
						from iComponentTester, which may have changed state.
sl@0
   312
						(@see CComponentTester::AddParamUnitTestL post-condition) for iComponentTester's new state.
sl@0
   313
	*/
sl@0
   314
	inline void TransitMethodL();
sl@0
   315
sl@0
   316
	/**
sl@0
   317
		@fn				Context() const
sl@0
   318
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   319
		Error Condition	: None.
sl@0
   320
		@since			7.0
sl@0
   321
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   322
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   323
		@post			No change in the CComponentTester_AddParamUnitTestL_Transition
sl@0
   324
	*/
sl@0
   325
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   326
	};	// CComponentTester_AddParamUnitTestL_Transition
sl@0
   327
sl@0
   328
// ______________________________________________________________________________
sl@0
   329
//
sl@0
   330
/**
sl@0
   331
	@internalComponent
sl@0
   332
	
sl@0
   333
	Comments : Transition test of the CComponentTester::TestComponent method.
sl@0
   334
 */
sl@0
   335
class CComponentTester_TestComponent_Transition : public CTransition
sl@0
   336
	{
sl@0
   337
public:
sl@0
   338
	/**
sl@0
   339
		@fn				CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext,
sl@0
   340
																	TTransitionValidator& aValidator)
sl@0
   341
		Intended Usage	: Standard c'tor method.
sl@0
   342
		Error Condition	: None.
sl@0
   343
		@since			7.0
sl@0
   344
		@param			aUTContext The context this transition is operating in.
sl@0
   345
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   346
		@pre 			None.
sl@0
   347
		@post			CComponentTester_TestComponent_Transition is fully constructed.
sl@0
   348
	*/
sl@0
   349
	CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext,
sl@0
   350
													TTransitionValidator& aValidator);
sl@0
   351
	/**
sl@0
   352
		@fn				TransitMethodL()
sl@0
   353
		Intended Usage	: To execute the CComponentTester::TestComponent method for the test harness.
sl@0
   354
		Error Condition	: Leaves with an error code.
sl@0
   355
		@leave  		KErrNoMemory, (@see CComponentTester::TestComponent)
sl@0
   356
		@since			7.0
sl@0
   357
		@return			None
sl@0
   358
		@pre 			CComponentTester_TestComponent_Transition is fully constructed.
sl@0
   359
		@post			No change in the CComponentTester_TestComponent_Transition apart
sl@0
   360
						from iComponentTester, which may have changed state.
sl@0
   361
						(@see CComponentTester::TestComponent post-condition) for iComponentTester's new state.
sl@0
   362
	*/
sl@0
   363
	inline void TransitMethodL();
sl@0
   364
sl@0
   365
	/**
sl@0
   366
		@fn				Context() const
sl@0
   367
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   368
		Error Condition	: None.
sl@0
   369
		@since			7.0
sl@0
   370
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   371
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   372
		@post			No change in the CComponentTester_TestComponent_Transition
sl@0
   373
	*/
sl@0
   374
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   375
	};	// CComponentTester_TestComponent_Transition
sl@0
   376
sl@0
   377
// ______________________________________________________________________________
sl@0
   378
//
sl@0
   379
/**
sl@0
   380
	@internalComponent
sl@0
   381
sl@0
   382
	Comments : Transition test of the CComponentTester::RunL method.
sl@0
   383
 */
sl@0
   384
class CComponentTester_RunL_Transition : public CTransitionType
sl@0
   385
	{
sl@0
   386
public:
sl@0
   387
	/**
sl@0
   388
		@fn				CComponentTester_RunL_Transition(CUnitTestContext& aUTContext,
sl@0
   389
																	TTransitionValidator& aValidator)
sl@0
   390
		Intended Usage	: Standard c'tor method.
sl@0
   391
		Error Condition	: None.
sl@0
   392
		@since			7.0
sl@0
   393
		@param			aUTContext The context this transition is operating in.
sl@0
   394
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   395
		@pre 			None.
sl@0
   396
		@post			CComponentTester_RunL_Transition is fully constructed.
sl@0
   397
	*/
sl@0
   398
	CComponentTester_RunL_Transition(CUnitTestContext& aUTContext,
sl@0
   399
													TTransitionValidator& aValidator);
sl@0
   400
	/**
sl@0
   401
		@fn				TransitMethodL()
sl@0
   402
		Intended Usage	: To execute the CComponentTester::RunL method for the test harness.
sl@0
   403
		Error Condition	: Leaves with an error code.
sl@0
   404
		@leave  		KErrNoMemory, (@see CComponentTester::RunL)
sl@0
   405
		@since			7.0
sl@0
   406
		@return			None
sl@0
   407
		@pre 			CComponentTester_RunL_Transition is fully constructed.
sl@0
   408
		@post			No change in the CComponentTester_RunL_Transition apart
sl@0
   409
						from iComponentTester, which may have changed state.
sl@0
   410
						(@see CComponentTester::RunL post-condition) for iComponentTester's new state.
sl@0
   411
	*/
sl@0
   412
	inline void TransitMethodL();
sl@0
   413
sl@0
   414
	/**
sl@0
   415
		@fn				Context() const
sl@0
   416
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   417
		Error Condition	: None.
sl@0
   418
		@since			7.0
sl@0
   419
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   420
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   421
		@post			No change in the CComponentTester_RunL_Transition
sl@0
   422
	*/
sl@0
   423
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   424
	};	// CComponentTester_RunL_Transition
sl@0
   425
sl@0
   426
// ______________________________________________________________________________
sl@0
   427
//
sl@0
   428
/**
sl@0
   429
	@internalComponent
sl@0
   430
sl@0
   431
	Comments : Transition test of the CComponentTester::Complete method.
sl@0
   432
 */
sl@0
   433
class CComponentTester_Complete_Transition : public CTransition
sl@0
   434
	{
sl@0
   435
public:
sl@0
   436
	/**
sl@0
   437
		@fn				CComponentTester_Complete_Transition(CUnitTestContext& aUTContext,
sl@0
   438
																	TTransitionValidator& aValidator)
sl@0
   439
		Intended Usage	: Standard c'tor method.
sl@0
   440
		Error Condition	: None.
sl@0
   441
		@since			7.0
sl@0
   442
		@param			aUTContext The context this transition is operating in.
sl@0
   443
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   444
		@pre 			None.
sl@0
   445
		@post			CComponentTester_Complete_Transition is fully constructed.
sl@0
   446
	*/
sl@0
   447
	CComponentTester_Complete_Transition(CUnitTestContext& aUTContext,
sl@0
   448
													TTransitionValidator& aValidator);
sl@0
   449
	/**
sl@0
   450
		@fn				TransitMethodL()
sl@0
   451
		Intended Usage	: To execute the CComponentTester::Complete method for the test harness.
sl@0
   452
		Error Condition	: Leaves with an error code.
sl@0
   453
		@leave  		KErrNoMemory, (@see CComponentTester::Complete)
sl@0
   454
		@since			7.0
sl@0
   455
		@return			None
sl@0
   456
		@pre 			CComponentTester_Complete_Transition is fully constructed.
sl@0
   457
		@post			No change in the CComponentTester_Complete_Transition apart
sl@0
   458
						from iComponentTester, which may have changed state.
sl@0
   459
						(@see CComponentTester::Complete post-condition) for iComponentTester's new state.
sl@0
   460
	*/
sl@0
   461
	inline void TransitMethodL();
sl@0
   462
sl@0
   463
	/**
sl@0
   464
		@fn				Context() const
sl@0
   465
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   466
		Error Condition	: None.
sl@0
   467
		@since			7.0
sl@0
   468
		@return			The unit test context cast to a CComponentTester_UnitTestContext
sl@0
   469
		@pre 			iUTContext is a valid CComponentTester_UnitTestContext.
sl@0
   470
		@post			No change in the CComponentTester_Complete_Transition
sl@0
   471
	*/
sl@0
   472
	inline CComponentTester_UnitTestContext& Context() const;
sl@0
   473
	};	// CComponentTester_Complete_Transition
sl@0
   474
sl@0
   475
sl@0
   476
// Add additional Transition class definitions here...
sl@0
   477
sl@0
   478
#include "ComponentTesterTransitions.inl"
sl@0
   479
sl@0
   480
#include "ComponentTesterUnitTestContext.inl"
sl@0
   481
sl@0
   482
#endif // __COMPONENTTESTERTRANSITIONS_H__
sl@0
   483