os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerUnitTest.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 Unit tests upon the CLoadManager class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __LOADMANAGERUNITTEST_H__
sl@0
    19
#define __LOADMANAGERUNITTEST_H__
sl@0
    20
sl@0
    21
sl@0
    22
#include <ecom/test_bed/testbeddefinitions.h>
sl@0
    23
#include "LoadManagerStateAccessor.h"
sl@0
    24
#include "LoadManagerTransitionValidation.h"
sl@0
    25
#include "LoadManagerTransitions.h"
sl@0
    26
sl@0
    27
// ______________________________________________________________________________
sl@0
    28
//
sl@0
    29
/**
sl@0
    30
	@internalComponent
sl@0
    31
	Comments : Unit Test for CreateAndDestroy on CLoadManager, the class under test.
sl@0
    32
 */
sl@0
    33
class CLoadManager_CreateAndDestroy_UnitTest : public CUnitTest
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	/**
sl@0
    37
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
    38
							MUnitTestObserver& aObserver)
sl@0
    39
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
    40
						cleanup stack.
sl@0
    41
		Error Condition	: Leaves with the error code.
sl@0
    42
		@leave  		KErrNoMemory
sl@0
    43
		@since			7.0
sl@0
    44
		@param			aDataLogger The output logging object.
sl@0
    45
		@param			aObserver The observer of this UnitTest.
sl@0
    46
		@return			CLoadManager_CreateAndDestroy_UnitTest* The constructed object.
sl@0
    47
		@pre 			None.
sl@0
    48
		@post			CLoadManager_CreateAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
    49
	 */
sl@0
    50
	static CLoadManager_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
    51
											MUnitTestObserver& aObserver);
sl@0
    52
sl@0
    53
	/**
sl@0
    54
		@fn				RunError(TInt aError)
sl@0
    55
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
    56
						to restore the CLoadManager_CreateAndDestroy_UnitTest
sl@0
    57
						object to a sensible state.
sl@0
    58
						(called by the Active Scheduler immediately before the Panic).
sl@0
    59
		Error Condition	: @see CUnitTest::RunError().
sl@0
    60
		@since			7.0
sl@0
    61
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
    62
						@see CUnitTest::RunError()
sl@0
    63
		@pre 			CLoadManager_CreateAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
    64
		@post			The object has been restored to a sensible state.
sl@0
    65
	 */
sl@0
    66
	inline TInt RunError(TInt aError);
sl@0
    67
sl@0
    68
	/**
sl@0
    69
		@fn				~CLoadManager_CreateAndDestroy_UnitTest()
sl@0
    70
		Intended Usage	: Standard Destructor.
sl@0
    71
		Error Condition	: None.	
sl@0
    72
		@since			7.0
sl@0
    73
		@pre 			CLoadManager_CreateAndDestroy_UnitTest is fully constructed.
sl@0
    74
		@post			CLoadManager_CreateAndDestroy_UnitTest is fully destroyed.
sl@0
    75
	*/
sl@0
    76
	~CLoadManager_CreateAndDestroy_UnitTest();
sl@0
    77
sl@0
    78
/**
sl@0
    79
	@fn				PrepareUnitTestL()
sl@0
    80
	Intended Usage	: Called by test framework just before test is run to allow
sl@0
    81
					any test preparation to take place.
sl@0
    82
	Error Condition	: 
sl@0
    83
	@since			7.0
sl@0
    84
	@pre 			CLoadManager_CreateAndDestroy_UnitTest is fully constructed.
sl@0
    85
	@post			This unit test is ready to run.
sl@0
    86
*/
sl@0
    87
	void PrepareUnitTestL();
sl@0
    88
sl@0
    89
private:
sl@0
    90
	/**
sl@0
    91
		@fn				CLoadManager_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    92
														MUnitTestObserver& aObserver)
sl@0
    93
		Intended Usage	: Default constructor.
sl@0
    94
		Error Condition	: None. 
sl@0
    95
		@since			7.0
sl@0
    96
		@param			aDataLogger The output logging object.
sl@0
    97
		@param			aObserver The observer of this UnitTest.
sl@0
    98
		@param			aStateAccessor WhiteBox state access to the CLoadManager class.
sl@0
    99
		@pre 			None.
sl@0
   100
		@post			CLoadManager_CreateAndDestroy_UnitTest is fully constructed.
sl@0
   101
	*/
sl@0
   102
	inline CLoadManager_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
   103
											MUnitTestObserver& aObserver);
sl@0
   104
sl@0
   105
	/**
sl@0
   106
		@fn				void ConstructL()
sl@0
   107
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   108
		to complete the object initialisation.
sl@0
   109
		Error Condition	: Leaves with an error code.
sl@0
   110
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   111
		@since			7.0
sl@0
   112
		@return			None 
sl@0
   113
		@pre 			CLoadManager_CreateAndDestroy_UnitTest is fully constructed.
sl@0
   114
		@post			CLoadManager_CreateAndDestroy_UnitTest is fully initialised.
sl@0
   115
	*/
sl@0
   116
	inline void ConstructL();
sl@0
   117
sl@0
   118
	/**
sl@0
   119
	The context of the Unit Test.
sl@0
   120
	i.e The CLoadManager class tested by this UnitTest's transitions.
sl@0
   121
	 */
sl@0
   122
	CLoadManager_UnitTestContext* iUTContext;
sl@0
   123
	TLoadManager_StateAccessor*	iStateAccessor;
sl@0
   124
	/* Example c'tor and d'tor transition validators */
sl@0
   125
	TLoadManager_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   126
	TLoadManager_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   127
	};	// CLoadManager_CreateAndDestroy_UnitTest
sl@0
   128
sl@0
   129
// ______________________________________________________________________________
sl@0
   130
//
sl@0
   131
/**
sl@0
   132
	@internalComponent
sl@0
   133
	Comments : Unit Test for FindInstantiationAndDestroy on CLoadManager, the class under test.
sl@0
   134
 */
sl@0
   135
class CLoadManager_FindInstantiationAndDestroy_UnitTest : public CUnitTest
sl@0
   136
	{
sl@0
   137
public:
sl@0
   138
	/**
sl@0
   139
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   140
							MUnitTestObserver& aObserver)
sl@0
   141
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   142
						cleanup stack.
sl@0
   143
		Error Condition	: Leaves with the error code.
sl@0
   144
		@leave  		KErrNoMemory
sl@0
   145
		@since			7.0
sl@0
   146
		@param			aDataLogger The output logging object.
sl@0
   147
		@param			aObserver The observer of this UnitTest.
sl@0
   148
		@return			CLoadManager_FindInstantiationAndDestroy_UnitTest* The constructed object.
sl@0
   149
		@pre 			None.
sl@0
   150
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
   151
	 */
sl@0
   152
	static CLoadManager_FindInstantiationAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   153
											MUnitTestObserver& aObserver);
sl@0
   154
sl@0
   155
	/**
sl@0
   156
		@fn				RunError(TInt aError)
sl@0
   157
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   158
						to restore the CLoadManager_FindInstantiationAndDestroy_UnitTest
sl@0
   159
						object to a sensible state.
sl@0
   160
						(called by the Active Scheduler immediately before the Panic).
sl@0
   161
		Error Condition	: @see CUnitTest::RunError().
sl@0
   162
		@since			7.0
sl@0
   163
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   164
						@see CUnitTest::RunError()
sl@0
   165
		@pre 			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
   166
		@post			The object has been restored to a sensible state.
sl@0
   167
	 */
sl@0
   168
	inline TInt RunError(TInt aError);
sl@0
   169
sl@0
   170
	/**
sl@0
   171
		@fn				~CLoadManager_FindInstantiationAndDestroy_UnitTest()
sl@0
   172
		Intended Usage	: Standard Destructor.
sl@0
   173
		Error Condition	: None.	
sl@0
   174
		@since			7.0
sl@0
   175
		@pre 			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed.
sl@0
   176
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully destroyed.
sl@0
   177
	*/
sl@0
   178
	~CLoadManager_FindInstantiationAndDestroy_UnitTest();
sl@0
   179
sl@0
   180
	void PrepareUnitTestL();
sl@0
   181
sl@0
   182
private:
sl@0
   183
	/**
sl@0
   184
		@fn				CLoadManager_FindInstantiationAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
   185
														MUnitTestObserver& aObserver)
sl@0
   186
		Intended Usage	: Default constructor.
sl@0
   187
		Error Condition	: None. 
sl@0
   188
		@since			7.0
sl@0
   189
		@param			aDataLogger The output logging object.
sl@0
   190
		@param			aObserver The observer of this UnitTest.
sl@0
   191
		@param			aStateAccessor WhiteBox state access to the CLoadManager class.
sl@0
   192
		@pre 			None.
sl@0
   193
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed.
sl@0
   194
	*/
sl@0
   195
	inline CLoadManager_FindInstantiationAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
   196
											MUnitTestObserver& aObserver);
sl@0
   197
sl@0
   198
	/**
sl@0
   199
		@fn				void ConstructL()
sl@0
   200
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   201
		to complete the object initialisation.
sl@0
   202
		Error Condition	: Leaves with an error code.
sl@0
   203
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   204
		@since			7.0
sl@0
   205
		@return			None 
sl@0
   206
		@pre 			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed.
sl@0
   207
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully initialised.
sl@0
   208
	*/
sl@0
   209
	void ConstructL();
sl@0
   210
sl@0
   211
	/**
sl@0
   212
	The context of the Unit Test.
sl@0
   213
	i.e The CLoadManager class tested by this UnitTest's transitions.
sl@0
   214
	 */
sl@0
   215
	CLoadManager_UnitTestContext* iUTContext;
sl@0
   216
	TLoadManager_StateAccessor*	iStateAccessor;
sl@0
   217
	/* C'tor, d'tor, and method transition validators */
sl@0
   218
	TLoadManager_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   219
	TLoadManager_InstantiationMethod_TransitionValidator*	iInstantiationMethodValidator;
sl@0
   220
	TLoadManager_DestroyThis_TransitionValidator*	iDestroyThisValidator;
sl@0
   221
	TLoadManager_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   222
	};	// CLoadManager_FindInstantiationAndDestroy_UnitTest
sl@0
   223
sl@0
   224
// ______________________________________________________________________________
sl@0
   225
//
sl@0
   226
/**
sl@0
   227
	@internalComponent
sl@0
   228
	Comments : Unit Test for Find Instantiation failure UnitTest on CLoadManager, the class under test.
sl@0
   229
 */
sl@0
   230
class CLoadManager_FindInstantiationFailure_UnitTest : public CUnitTest
sl@0
   231
	{
sl@0
   232
public:
sl@0
   233
	/**
sl@0
   234
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   235
							MUnitTestObserver& aObserver)
sl@0
   236
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   237
						cleanup stack.
sl@0
   238
		Error Condition	: Leaves with the error code.
sl@0
   239
		@leave  		KErrNoMemory
sl@0
   240
		@since			7.0
sl@0
   241
		@param			aDataLogger The output logging object.
sl@0
   242
		@param			aObserver The observer of this UnitTest.
sl@0
   243
		@return			CLoadManager_FindInstantiationAndDestroy_UnitTest* The constructed object.
sl@0
   244
		@pre 			None.
sl@0
   245
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed, and initialised.
sl@0
   246
	 */
sl@0
   247
	static CLoadManager_FindInstantiationFailure_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   248
											MUnitTestObserver& aObserver);
sl@0
   249
sl@0
   250
	/**
sl@0
   251
		@fn				RunError(TInt aError)
sl@0
   252
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   253
						to restore the CLoadManager_FindInstantiationAndDestroy_UnitTest
sl@0
   254
						object to a sensible state.
sl@0
   255
						(called by the Active Scheduler immediately before the Panic).
sl@0
   256
		Error Condition	: @see CUnitTest::RunError().
sl@0
   257
		@since			7.0
sl@0
   258
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   259
						@see CUnitTest::RunError()
sl@0
   260
		@pre 			CLoadManager_FindInstantiationFailure_UnitTest is fully constructed, and initialised.
sl@0
   261
		@post			The object has been restored to a sensible state.
sl@0
   262
	 */
sl@0
   263
	inline TInt RunError(TInt aError);
sl@0
   264
sl@0
   265
	/**
sl@0
   266
		@fn				~CLoadManager_FindInstantiationFailure_UnitTest()
sl@0
   267
		Intended Usage	: Standard Destructor.
sl@0
   268
		Error Condition	: None.	
sl@0
   269
		@since			7.0
sl@0
   270
		@pre 			CLoadManager_FindInstantiationFailure_UnitTest is fully constructed.
sl@0
   271
		@post			CLoadManager_FindInstantiationFailure_UnitTest is fully destroyed.
sl@0
   272
	*/
sl@0
   273
	~CLoadManager_FindInstantiationFailure_UnitTest();
sl@0
   274
sl@0
   275
private:
sl@0
   276
	/**
sl@0
   277
		@fn				CLoadManager_FindInstantiationFailure_UnitTest(CDataLogger& aDataLogger,
sl@0
   278
														MUnitTestObserver& aObserver)
sl@0
   279
		Intended Usage	: Default constructor.
sl@0
   280
		Error Condition	: None. 
sl@0
   281
		@since			7.0
sl@0
   282
		@param			aDataLogger The output logging object.
sl@0
   283
		@param			aObserver The observer of this UnitTest.
sl@0
   284
		@param			aStateAccessor WhiteBox state access to the CLoadManager class.
sl@0
   285
		@pre 			None.
sl@0
   286
		@post			CLoadManager_FindInstantiationAndDestroy_UnitTest is fully constructed.
sl@0
   287
	*/
sl@0
   288
	inline CLoadManager_FindInstantiationFailure_UnitTest(CDataLogger& aDataLogger,
sl@0
   289
											MUnitTestObserver& aObserver);
sl@0
   290
sl@0
   291
	/**
sl@0
   292
		@fn				void ConstructL()
sl@0
   293
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   294
		to complete the object initialisation.
sl@0
   295
		Error Condition	: Leaves with an error code.
sl@0
   296
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   297
		@since			7.0
sl@0
   298
		@return			None 
sl@0
   299
		@pre 			CLoadManager_FindInstantiationFailure_UnitTest is fully constructed.
sl@0
   300
		@post			CLoadManager_FindInstantiationFailure_UnitTest is fully initialised.
sl@0
   301
	*/
sl@0
   302
	void ConstructL();
sl@0
   303
sl@0
   304
	/**
sl@0
   305
	The context of the Unit Test.
sl@0
   306
	i.e The CLoadManager class tested by this UnitTest's transitions.
sl@0
   307
	 */
sl@0
   308
	CLoadManager_UnitTestContext* iUTContext;
sl@0
   309
	TLoadManager_StateAccessor*	iStateAccessor;
sl@0
   310
	/* C'tor, d'tor, and method transition validators */
sl@0
   311
	TLoadManager_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   312
	TLoadManager_InstantiationFailure_TransitionValidator*	iInstantiationMethodValidator;
sl@0
   313
	TLoadManager_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   314
	};	// CLoadManager_FindInstantiationFailure_UnitTest
sl@0
   315
sl@0
   316
// ______________________________________________________________________________
sl@0
   317
//
sl@0
   318
/**
sl@0
   319
	@internalComponent
sl@0
   320
	Comments : 
sl@0
   321
 */
sl@0
   322
class CLoadManager_DefectFOT56ULPM_UnitTest : public CUnitTest
sl@0
   323
	{
sl@0
   324
public:
sl@0
   325
	/**
sl@0
   326
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   327
							MUnitTestObserver& aObserver)
sl@0
   328
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   329
						cleanup stack.
sl@0
   330
		Error Condition	: Leaves with the error code.
sl@0
   331
		@leave  		KErrNoMemory
sl@0
   332
		@since			7.0
sl@0
   333
		@param			aDataLogger The output logging object.
sl@0
   334
		@param			aObserver The observer of this UnitTest.
sl@0
   335
		@return			CLoadManager_DefectFOT56ULPM_UnitTest* The constructed object.
sl@0
   336
		@pre 			None.
sl@0
   337
		@post			CLoadManager_DefectFOT56ULPM_UnitTest is fully constructed, and initialised.
sl@0
   338
	 */
sl@0
   339
	static CLoadManager_DefectFOT56ULPM_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   340
											MUnitTestObserver& aObserver);
sl@0
   341
sl@0
   342
	/**
sl@0
   343
		@fn				RunError(TInt aError)
sl@0
   344
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   345
						to restore the CLoadManager_FindInstantiationAndDestroy_UnitTest
sl@0
   346
						object to a sensible state.
sl@0
   347
						(called by the Active Scheduler immediately before the Panic).
sl@0
   348
		Error Condition	: @see CUnitTest::RunError().
sl@0
   349
		@since			7.0
sl@0
   350
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   351
						@see CUnitTest::RunError()
sl@0
   352
		@pre 			CLoadManager_DefectFOT56ULPM_UnitTest is fully constructed, and initialised.
sl@0
   353
		@post			The object has been restored to a sensible state.
sl@0
   354
	 */
sl@0
   355
	inline TInt RunError(TInt aError);
sl@0
   356
sl@0
   357
	/**
sl@0
   358
		@fn				~CLoadManager_DefectFOT56ULPM_UnitTest()
sl@0
   359
		Intended Usage	: Standard Destructor.
sl@0
   360
		Error Condition	: None.	
sl@0
   361
		@since			7.0
sl@0
   362
		@pre 			CLoadManager_DefectFOT56ULPM_UnitTest is fully constructed.
sl@0
   363
		@post			CLoadManager_DefectFOT56ULPM_UnitTest is fully destroyed.
sl@0
   364
	*/
sl@0
   365
	~CLoadManager_DefectFOT56ULPM_UnitTest();
sl@0
   366
sl@0
   367
private:
sl@0
   368
	/**
sl@0
   369
		@fn				CLoadManager_DefectFOT56ULPM_UnitTest(CDataLogger& aDataLogger,
sl@0
   370
														MUnitTestObserver& aObserver)
sl@0
   371
		Intended Usage	: Default constructor.
sl@0
   372
		Error Condition	: None. 
sl@0
   373
		@since			7.0
sl@0
   374
		@param			aDataLogger The output logging object.
sl@0
   375
		@param			aObserver The observer of this UnitTest.
sl@0
   376
		@param			aStateAccessor WhiteBox state access to the CLoadManager class.
sl@0
   377
		@pre 			None.
sl@0
   378
		@post			CLoadManager_DefectFOT56ULPM_UnitTest is fully constructed.
sl@0
   379
	*/
sl@0
   380
	inline CLoadManager_DefectFOT56ULPM_UnitTest(CDataLogger& aDataLogger,
sl@0
   381
											MUnitTestObserver& aObserver);
sl@0
   382
sl@0
   383
	/**
sl@0
   384
		@fn				void ConstructL()
sl@0
   385
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   386
		to complete the object initialisation.
sl@0
   387
		Error Condition	: Leaves with an error code.
sl@0
   388
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   389
		@since			7.0
sl@0
   390
		@return			None 
sl@0
   391
		@pre 			CLoadManager_DefectFOT56ULPM_UnitTest is fully constructed.
sl@0
   392
		@post			CLoadManager_DefectFOT56ULPM_UnitTest is fully initialised.
sl@0
   393
	*/
sl@0
   394
	void ConstructL();
sl@0
   395
sl@0
   396
	/**
sl@0
   397
	The context of the Unit Test.
sl@0
   398
	i.e The CLoadManager class tested by this UnitTest's transitions.
sl@0
   399
	 */
sl@0
   400
	CLoadManager_UnitTestContext* iUTContext;
sl@0
   401
	TLoadManager_StateAccessor*	iStateAccessor;
sl@0
   402
	/* C'tor, d'tor, and method transition validators */
sl@0
   403
	TLoadManager_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   404
	TLoadManager_InstantiationMethod_TransitionValidator*	iInstantiationMethodValidator;
sl@0
   405
	TLoadManager_DestroyThis_TransitionValidator*	iDestroyThisValidator;
sl@0
   406
	TLoadManager_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   407
	};	// CLoadManager_DefectFOT56ULPM_UnitTest
sl@0
   408
sl@0
   409
#include "LoadManagerUnitTest.inl"
sl@0
   410
sl@0
   411
#endif // __LOADMANAGERUNITTEST_H__