os/ossrv/lowlevellibsandfws/pluginfw/Framework/FrameTests/MagicUnitTests.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
// This file contains the definition of the 
sl@0
    15
// class CExampleInterfaceUnitTest	
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __MAGICUNITTEST_H__
sl@0
    20
#define __MAGICUNITTEST_H__
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
sl@0
    24
#include <ecom/test_bed/unittest.h>
sl@0
    25
#include "MagicStateAccessors.h"
sl@0
    26
#include "MagicTransitions.h"
sl@0
    27
#include "MagicTransitionValidation.h"
sl@0
    28
sl@0
    29
// ______________________________________________________________________________
sl@0
    30
//
sl@0
    31
/**
sl@0
    32
	@internalComponent
sl@0
    33
	Comments : UnitTest CreateAndDestroy on the CExampleInterface test class.
sl@0
    34
 */
sl@0
    35
class CExampleInterfaceCreateAndDestroyUnitTest : public CUnitTest
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	/**
sl@0
    39
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
    40
							MUnitTestObserver& aObserver)
sl@0
    41
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
    42
						cleanup stack.
sl@0
    43
		Error Condition	: Leaves with the error code.
sl@0
    44
		@leave			KErrNoMemory
sl@0
    45
		@since			7.0
sl@0
    46
		@param			aDataLogger The output logging object.
sl@0
    47
		@param			aObserver The observer of this UnitTest.
sl@0
    48
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
    49
		@return			CExampleInterfaceCreateAndDestroyUnitTest* The constructed object.
sl@0
    50
		@pre 			None.
sl@0
    51
		@post			CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
sl@0
    52
	 */
sl@0
    53
	static CExampleInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
sl@0
    54
											MUnitTestObserver& aObserver);
sl@0
    55
sl@0
    56
	/**
sl@0
    57
		@fn				RunError(TInt aError)
sl@0
    58
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
    59
						to restore the CExampleInterfaceCreateAndDestroyUnitTest
sl@0
    60
						object to a sensible state.
sl@0
    61
						(called by the Active Scheduler immediately before the Panic).
sl@0
    62
		Error Condition	: @see CUnitTest::RunError().
sl@0
    63
		@since			7.0
sl@0
    64
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
    65
						@see CUnitTest::RunError()
sl@0
    66
		@pre 			CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
sl@0
    67
		@post			The object has been restored to a sensible state.
sl@0
    68
	 */
sl@0
    69
	inline TInt RunError(TInt aError);
sl@0
    70
sl@0
    71
	/**
sl@0
    72
		@fn				~CExampleInterfaceCreateAndDestroyUnitTest()
sl@0
    73
		Intended Usage	: Standard Destructor.
sl@0
    74
		Error Condition	: None.	
sl@0
    75
		@since			7.0
sl@0
    76
		@pre 			CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
sl@0
    77
		@post			CExampleInterfaceCreateAndDestroyUnitTest is fully destroyed.
sl@0
    78
	*/
sl@0
    79
	inline ~CExampleInterfaceCreateAndDestroyUnitTest();
sl@0
    80
sl@0
    81
private:
sl@0
    82
	/**
sl@0
    83
		@fn				CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
sl@0
    84
														MUnitTestObserver& aObserver)
sl@0
    85
		Intended Usage	: Default constructor.
sl@0
    86
		Error Condition	: None. 
sl@0
    87
		@since			7.0
sl@0
    88
		@param			aDataLogger The output logging object.
sl@0
    89
		@param			aObserver The observer of this UnitTest.
sl@0
    90
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
    91
		@pre 			None.
sl@0
    92
		@post			CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
sl@0
    93
	*/
sl@0
    94
	inline CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
sl@0
    95
											MUnitTestObserver& aObserver);
sl@0
    96
sl@0
    97
	/**
sl@0
    98
		@fn				void ConstructL()
sl@0
    99
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   100
		to complete the object initialisation.
sl@0
   101
		Error Condition	: Leaves with an error code.
sl@0
   102
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   103
		@since			7.0
sl@0
   104
		@return			None 
sl@0
   105
		@pre 			CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
sl@0
   106
		@post			CExampleInterfaceCreateAndDestroyUnitTest is fully initialised.
sl@0
   107
	*/
sl@0
   108
	inline void ConstructL();
sl@0
   109
sl@0
   110
	/**
sl@0
   111
	The context of the Unit Test.
sl@0
   112
	i.e The CExampleInterface class tested by this UintTest's transitions.
sl@0
   113
	 */
sl@0
   114
	CExampleInterface_UnitTestContext*		iUTContext;
sl@0
   115
	TExampleInterface_Ctor_TransitionValidator*		iCtorValidator;
sl@0
   116
	TExampleInterface_Dtor_TransitionValidator*		iDtorValidator;
sl@0
   117
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   118
	REComSession* iEComSession;
sl@0
   119
	};
sl@0
   120
sl@0
   121
// ______________________________________________________________________________
sl@0
   122
//
sl@0
   123
/**
sl@0
   124
	@internalComponent
sl@0
   125
	Comments : UnitTest AltCreateAndDestroy on the CExampleInterface test class.
sl@0
   126
 */
sl@0
   127
class CExampleInterfaceAltCreateAndDestroyUnitTest : public CUnitTest
sl@0
   128
	{
sl@0
   129
public:
sl@0
   130
	/**
sl@0
   131
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   132
							MUnitTestObserver& aObserver)
sl@0
   133
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   134
						cleanup stack.
sl@0
   135
		Error Condition	: Leaves with the error code.
sl@0
   136
		@leave			KErrNoMemory
sl@0
   137
		@since			7.0
sl@0
   138
		@param			aDataLogger The output logging object.
sl@0
   139
		@param			aObserver The observer of this UnitTest.
sl@0
   140
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   141
		@return			CExampleInterfaceAltCreateAndDestroyUnitTest* The constructed object.
sl@0
   142
		@pre 			None.
sl@0
   143
		@post			CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised.
sl@0
   144
	 */
sl@0
   145
	static CExampleInterfaceAltCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   146
											MUnitTestObserver& aObserver);
sl@0
   147
sl@0
   148
	/**
sl@0
   149
		@fn				RunError(TInt aError)
sl@0
   150
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   151
						to restore the CExampleInterfaceAltCreateAndDestroyUnitTest
sl@0
   152
						object to a sensible state.
sl@0
   153
						(called by the Active Scheduler immediately before the Panic).
sl@0
   154
		Error Condition	: @see CUnitTest::RunError().
sl@0
   155
		@since			7.0
sl@0
   156
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   157
						@see CUnitTest::RunError()
sl@0
   158
		@pre 			CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised.
sl@0
   159
		@post			The object has been restored to a sensible state.
sl@0
   160
	 */
sl@0
   161
	inline TInt RunError(TInt aError);
sl@0
   162
sl@0
   163
	/**
sl@0
   164
		@fn				~CExampleInterfaceAltCreateAndDestroyUnitTest()
sl@0
   165
		Intended Usage	: Standard Destructor.
sl@0
   166
		Error Condition	: None.	
sl@0
   167
		@since			7.0
sl@0
   168
		@pre 			CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
sl@0
   169
		@post			CExampleInterfaceAltCreateAndDestroyUnitTest is fully destroyed.
sl@0
   170
	*/
sl@0
   171
	inline ~CExampleInterfaceAltCreateAndDestroyUnitTest();
sl@0
   172
sl@0
   173
private:
sl@0
   174
	/**
sl@0
   175
		@fn				CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
sl@0
   176
														MUnitTestObserver& aObserver)
sl@0
   177
		Intended Usage	: Default constructor.
sl@0
   178
		Error Condition	: None. 
sl@0
   179
		@since			7.0
sl@0
   180
		@param			aDataLogger The output logging object.
sl@0
   181
		@param			aObserver The observer of this UnitTest.
sl@0
   182
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   183
		@pre 			None.
sl@0
   184
		@post			CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
sl@0
   185
	*/
sl@0
   186
	inline CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
sl@0
   187
											MUnitTestObserver& aObserver);
sl@0
   188
sl@0
   189
	/**
sl@0
   190
		@fn				void ConstructL()
sl@0
   191
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   192
		to complete the object initialisation.
sl@0
   193
		Error Condition	: Leaves with an error code.
sl@0
   194
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   195
		@since			7.0
sl@0
   196
		@return			None 
sl@0
   197
		@pre 			CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
sl@0
   198
		@post			CExampleInterfaceAltCreateAndDestroyUnitTest is fully initialised.
sl@0
   199
	*/
sl@0
   200
	inline void ConstructL();
sl@0
   201
sl@0
   202
	/**
sl@0
   203
	The context of the Unit Test.
sl@0
   204
	i.e The CExampleInterface class tested by this UnitTest's transitions.
sl@0
   205
	 */
sl@0
   206
	CExampleInterface_UnitTestContext*		iUTContext;
sl@0
   207
	TExampleInterface_Ctor_TransitionValidator*		iCtorValidator;
sl@0
   208
	TExampleInterface_Dtor_TransitionValidator*		iDtorValidator;
sl@0
   209
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   210
	REComSession* iEComSession;
sl@0
   211
	};
sl@0
   212
sl@0
   213
sl@0
   214
// ______________________________________________________________________________
sl@0
   215
//
sl@0
   216
/**
sl@0
   217
	@internalComponent
sl@0
   218
	Comments : Unit Test for the ListI mplementations functions on CExampleInterface, 
sl@0
   219
	the class under test.
sl@0
   220
 */
sl@0
   221
class CExampleInterface_ListImplementations_UnitTest : public CUnitTest
sl@0
   222
	{
sl@0
   223
public:
sl@0
   224
	/**
sl@0
   225
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   226
							MUnitTestObserver& aObserver)
sl@0
   227
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   228
						cleanup stack.
sl@0
   229
		Error Condition	: Leaves with the error code.
sl@0
   230
		@leave  		KErrNoMemory
sl@0
   231
		@since			7.0
sl@0
   232
		@param			aDataLogger The output logging object.
sl@0
   233
		@param			aObserver The observer of this UnitTest.
sl@0
   234
		@return			CExampleInterface_ListImplementations_UnitTest* The constructed 
sl@0
   235
						object.
sl@0
   236
		@pre 			None.
sl@0
   237
		@post			CExampleInterface_ListImplementations_UnitTest is fully 
sl@0
   238
						constructed, and initialised.
sl@0
   239
	 */
sl@0
   240
	static CExampleInterface_ListImplementations_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   241
											MUnitTestObserver& aObserver);
sl@0
   242
sl@0
   243
	/**
sl@0
   244
		@fn				RunError(TInt aError)
sl@0
   245
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   246
						to restore the CExampleInterface_ListImplementations_UnitTest
sl@0
   247
						object to a sensible state.
sl@0
   248
						(called by the Active Scheduler immediately before the Panic).
sl@0
   249
		Error Condition	: @see CUnitTest::RunError().
sl@0
   250
		@since			7.0
sl@0
   251
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   252
						@see CUnitTest::RunError()
sl@0
   253
		@pre 			CExampleInterface_ListImplementations_UnitTest is fully 
sl@0
   254
						constructed, and initialised.
sl@0
   255
		@post			The object has been restored to a sensible state.
sl@0
   256
	 */
sl@0
   257
	inline TInt RunError(TInt aError);
sl@0
   258
sl@0
   259
	/**
sl@0
   260
		@fn				~CExampleInterface_ListImplementations_UnitTest()
sl@0
   261
		Intended Usage	: Standard Destructor.
sl@0
   262
		Error Condition	: None.	
sl@0
   263
		@since			7.0
sl@0
   264
		@pre 			CExampleInterface_ListImplementations_UnitTest is 
sl@0
   265
						fully constructed.
sl@0
   266
		@post			CExampleInterface_ListImplementations_UnitTest is 
sl@0
   267
						fully destroyed.
sl@0
   268
	*/
sl@0
   269
	~CExampleInterface_ListImplementations_UnitTest();
sl@0
   270
sl@0
   271
private:
sl@0
   272
	/**
sl@0
   273
		@fn				CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger,
sl@0
   274
														MUnitTestObserver& aObserver)
sl@0
   275
		Intended Usage	: Default constructor.
sl@0
   276
		Error Condition	: None. 
sl@0
   277
		@since			7.0
sl@0
   278
		@param			aDataLogger The output logging object.
sl@0
   279
		@param			aObserver The observer of this UnitTest.
sl@0
   280
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   281
		@pre 			None.
sl@0
   282
		@post			CExampleInterface_ListImplementations_UnitTest is fully 
sl@0
   283
						constructed.
sl@0
   284
	*/
sl@0
   285
	inline CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger,
sl@0
   286
											MUnitTestObserver& aObserver);
sl@0
   287
sl@0
   288
	/**
sl@0
   289
		@fn				void ConstructL()
sl@0
   290
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   291
		to complete the object initialisation.
sl@0
   292
		Error Condition	: Leaves with an error code.
sl@0
   293
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   294
		@since			7.0
sl@0
   295
		@return			None 
sl@0
   296
		@pre 			CExampleInterface_ListImplementations_UnitTest is 
sl@0
   297
						fully constructed.
sl@0
   298
		@post			CExampleInterface_ListImplementations_UnitTest is 
sl@0
   299
						fully initialised.
sl@0
   300
	*/
sl@0
   301
	void ConstructL();
sl@0
   302
sl@0
   303
	/**
sl@0
   304
	The context of the Unit Test.
sl@0
   305
	i.e The CExampleInterface class tested by this UnitTest's transitions.
sl@0
   306
	 */
sl@0
   307
	CExampleInterface_UnitTestContext* iUTContext;
sl@0
   308
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   309
	// C'tor, d'tor, and method transition validators
sl@0
   310
	TExampleInterface_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   311
	TExampleInterface_ListImplementations_TransitionValidator*	iListImplementationsValidator;
sl@0
   312
	TExampleInterface_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   313
	REComSession* iEComSession;
sl@0
   314
	};	// CExampleInterface_ListImplementations_UnitTest
sl@0
   315
sl@0
   316
// ______________________________________________________________________________
sl@0
   317
//
sl@0
   318
/**
sl@0
   319
	@internalComponent
sl@0
   320
	Comments : Unit Test for DefectHAN4WZHSY on CExampleInterface, the class under test.
sl@0
   321
 */
sl@0
   322
class CExampleInterface_DefectHAN4WZHSY_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			CExampleInterface_DefectHAN4WZHSY_UnitTest* The constructed object.
sl@0
   336
		@pre 			None.
sl@0
   337
		@post			CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed, and initialised.
sl@0
   338
	 */
sl@0
   339
	static CExampleInterface_DefectHAN4WZHSY_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 CExampleInterface_DefectHAN4WZHSY_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 			CExampleInterface_DefectHAN4WZHSY_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				~CExampleInterface_DefectHAN4WZHSY_UnitTest()
sl@0
   359
		Intended Usage	: Standard Destructor.
sl@0
   360
		Error Condition	: None.	
sl@0
   361
		@since			7.0
sl@0
   362
		@pre 			CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
sl@0
   363
		@post			CExampleInterface_DefectHAN4WZHSY_UnitTest is fully destroyed.
sl@0
   364
	*/
sl@0
   365
	~CExampleInterface_DefectHAN4WZHSY_UnitTest();
sl@0
   366
sl@0
   367
private:
sl@0
   368
	/**
sl@0
   369
		@fn				CExampleInterface_DefectHAN4WZHSY_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 CExampleInterface class.
sl@0
   377
		@pre 			None.
sl@0
   378
		@post			CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
sl@0
   379
	*/
sl@0
   380
	inline CExampleInterface_DefectHAN4WZHSY_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 			CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
sl@0
   392
		@post			CExampleInterface_DefectHAN4WZHSY_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 CExampleInterface class tested by this UnitTest's transitions.
sl@0
   399
	 */
sl@0
   400
	CExampleInterface_UnitTestContext* iUTContext;
sl@0
   401
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   402
sl@0
   403
	// C'tor, d'tor, and method transition validators
sl@0
   404
	TExampleInterface_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   405
	TExampleInterface_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   406
	};	// CExampleInterface_DefectHAN4WZHSY_UnitTest
sl@0
   407
sl@0
   408
// ______________________________________________________________________________
sl@0
   409
//
sl@0
   410
/**
sl@0
   411
	@internalComponent
sl@0
   412
	Comments : Unit Test for DefectCUO4YCEUE on CExampleInterface, the class under test.
sl@0
   413
 */
sl@0
   414
class CExampleInterface_DefectCUO4YCEUE_UnitTest : public CUnitTest
sl@0
   415
	{
sl@0
   416
public:
sl@0
   417
	/**
sl@0
   418
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   419
							MUnitTestObserver& aObserver)
sl@0
   420
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   421
						cleanup stack.
sl@0
   422
		Error Condition	: Leaves with the error code.
sl@0
   423
		@leave  		KErrNoMemory
sl@0
   424
		@since			7.0
sl@0
   425
		@param			aDataLogger The output logging object.
sl@0
   426
		@param			aObserver The observer of this UnitTest.
sl@0
   427
		@return			CExampleInterface_DefectCUO4YCEUE_UnitTest* The constructed object.
sl@0
   428
		@pre 			None.
sl@0
   429
		@post			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised.
sl@0
   430
	 */
sl@0
   431
	static CExampleInterface_DefectCUO4YCEUE_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   432
											MUnitTestObserver& aObserver);
sl@0
   433
sl@0
   434
	/**
sl@0
   435
		@fn				RunError(TInt aError)
sl@0
   436
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   437
						to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest
sl@0
   438
						object to a sensible state.
sl@0
   439
						(called by the Active Scheduler immediately before the Panic).
sl@0
   440
		Error Condition	: @see CUnitTest::RunError().
sl@0
   441
		@since			7.0
sl@0
   442
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   443
						@see CUnitTest::RunError()
sl@0
   444
		@pre 			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised.
sl@0
   445
		@post			The object has been restored to a sensible state.
sl@0
   446
	 */
sl@0
   447
	inline TInt RunError(TInt aError);
sl@0
   448
sl@0
   449
	/**
sl@0
   450
		@fn				~CExampleInterface_DefectCUO4YCEUE_UnitTest()
sl@0
   451
		Intended Usage	: Standard Destructor.
sl@0
   452
		Error Condition	: None.	
sl@0
   453
		@since			7.0
sl@0
   454
		@pre 			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
sl@0
   455
		@post			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully destroyed.
sl@0
   456
	*/
sl@0
   457
	~CExampleInterface_DefectCUO4YCEUE_UnitTest();
sl@0
   458
sl@0
   459
private:
sl@0
   460
	/**
sl@0
   461
		@fn				CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger,
sl@0
   462
														MUnitTestObserver& aObserver)
sl@0
   463
		Intended Usage	: Default constructor.
sl@0
   464
		Error Condition	: None. 
sl@0
   465
		@since			7.0
sl@0
   466
		@param			aDataLogger The output logging object.
sl@0
   467
		@param			aObserver The observer of this UnitTest.
sl@0
   468
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   469
		@pre 			None.
sl@0
   470
		@post			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
sl@0
   471
	*/
sl@0
   472
	inline CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger,
sl@0
   473
											MUnitTestObserver& aObserver);
sl@0
   474
sl@0
   475
	/**
sl@0
   476
		@fn				void ConstructL()
sl@0
   477
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   478
		to complete the object initialisation.
sl@0
   479
		Error Condition	: Leaves with an error code.
sl@0
   480
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   481
		@since			7.0
sl@0
   482
		@return			None 
sl@0
   483
		@pre 			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
sl@0
   484
		@post			CExampleInterface_DefectCUO4YCEUE_UnitTest is fully initialised.
sl@0
   485
	*/
sl@0
   486
	void ConstructL();
sl@0
   487
sl@0
   488
	/**
sl@0
   489
	The context of the Unit Test.
sl@0
   490
	i.e The CExampleInterface class tested by this UnitTest's transitions.
sl@0
   491
	 */
sl@0
   492
	CExampleInterface_UnitTestContext* iUTContext;
sl@0
   493
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   494
sl@0
   495
	// C'tor, d'tor, and method transition validators
sl@0
   496
	TExampleInterface_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   497
	TExampleInterface_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   498
	};	// CExampleInterface_DefectCUO4YCEUE_UnitTest
sl@0
   499
sl@0
   500
// ______________________________________________________________________________
sl@0
   501
//
sl@0
   502
/**
sl@0
   503
	@internalComponent
sl@0
   504
	Comments : Unit Test for DefectEVS-4Z9BPG on CExampleInterface, the class under test.
sl@0
   505
 */
sl@0
   506
class CExampleInterface_DefectEVS4Z9BPG_UnitTest : public CUnitTest
sl@0
   507
	{
sl@0
   508
public:
sl@0
   509
	/**
sl@0
   510
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   511
							MUnitTestObserver& aObserver)
sl@0
   512
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   513
						cleanup stack.
sl@0
   514
		Error Condition	: Leaves with the error code.
sl@0
   515
		@leave  		KErrNoMemory
sl@0
   516
		@since			7.0
sl@0
   517
		@param			aDataLogger The output logging object.
sl@0
   518
		@param			aObserver The observer of this UnitTest.
sl@0
   519
		@return			CExampleInterface_DefectEVS4Z9BPG_UnitTest* The constructed object.
sl@0
   520
		@pre 			None.
sl@0
   521
		@post			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised.
sl@0
   522
	 */
sl@0
   523
	static CExampleInterface_DefectEVS4Z9BPG_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   524
											MUnitTestObserver& aObserver);
sl@0
   525
sl@0
   526
	/**
sl@0
   527
		@fn				RunError(TInt aError)
sl@0
   528
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   529
						to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest
sl@0
   530
						object to a sensible state.
sl@0
   531
						(called by the Active Scheduler immediately before the Panic).
sl@0
   532
		Error Condition	: @see CUnitTest::RunError().
sl@0
   533
		@since			7.0
sl@0
   534
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   535
						@see CUnitTest::RunError()
sl@0
   536
		@pre 			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised.
sl@0
   537
		@post			The object has been restored to a sensible state.
sl@0
   538
	 */
sl@0
   539
	inline TInt RunError(TInt aError);
sl@0
   540
sl@0
   541
	/**
sl@0
   542
		@fn				~CExampleInterface_DefectEVS4Z9BPG_UnitTest()
sl@0
   543
		Intended Usage	: Standard Destructor.
sl@0
   544
		Error Condition	: None.	
sl@0
   545
		@since			7.0
sl@0
   546
		@pre 			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
sl@0
   547
		@post			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully destroyed.
sl@0
   548
	*/
sl@0
   549
	~CExampleInterface_DefectEVS4Z9BPG_UnitTest();
sl@0
   550
sl@0
   551
private:
sl@0
   552
	/**
sl@0
   553
		@fn				CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger,
sl@0
   554
														MUnitTestObserver& aObserver)
sl@0
   555
		Intended Usage	: Default constructor.
sl@0
   556
		Error Condition	: None. 
sl@0
   557
		@since			7.0
sl@0
   558
		@param			aDataLogger The output logging object.
sl@0
   559
		@param			aObserver The observer of this UnitTest.
sl@0
   560
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   561
		@pre 			None.
sl@0
   562
		@post			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
sl@0
   563
	*/
sl@0
   564
	inline CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger,
sl@0
   565
											MUnitTestObserver& aObserver);
sl@0
   566
sl@0
   567
	/**
sl@0
   568
		@fn				void ConstructL()
sl@0
   569
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   570
		to complete the object initialisation.
sl@0
   571
		Error Condition	: Leaves with an error code.
sl@0
   572
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   573
		@since			7.0
sl@0
   574
		@return			None 
sl@0
   575
		@pre 			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
sl@0
   576
		@post			CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully initialised.
sl@0
   577
	*/
sl@0
   578
	void ConstructL();
sl@0
   579
sl@0
   580
	/**
sl@0
   581
	The context of the Unit Test.
sl@0
   582
	i.e The CExampleInterface class tested by this UnitTest's transitions.
sl@0
   583
	 */
sl@0
   584
	CExampleInterface_UnitTestContext* iUTContext;
sl@0
   585
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   586
sl@0
   587
	// C'tor, d'tor, and method transition validators
sl@0
   588
	TExampleInterface_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   589
	TExampleInterface_Default_TransitionValidator*	iDefaultValidator;
sl@0
   590
	TExampleInterface_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   591
	};	// CExampleInterface_DefectEVS4Z9BPG_UnitTest
sl@0
   592
sl@0
   593
// ______________________________________________________________________________
sl@0
   594
//
sl@0
   595
/**
sl@0
   596
	@internalComponent
sl@0
   597
	Comments : Unit Test for DefectKRN-53SL4Q on CExampleInterface, the class under test.
sl@0
   598
 */
sl@0
   599
class CExampleInterface_DefectKRN53SL4Q_UnitTest : public CUnitTest
sl@0
   600
	{
sl@0
   601
public:
sl@0
   602
	/**
sl@0
   603
		@fn				NewL(CDataLogger& aDataLogger,
sl@0
   604
							MUnitTestObserver& aObserver)
sl@0
   605
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
   606
						cleanup stack.
sl@0
   607
		Error Condition	: Leaves with the error code.
sl@0
   608
		@leave  		KErrNoMemory
sl@0
   609
		@since			7.0
sl@0
   610
		@param			aDataLogger The output logging object.
sl@0
   611
		@param			aObserver The observer of this UnitTest.
sl@0
   612
		@return			CExampleInterface_DefectKRN53SL4Q_UnitTest* The constructed object.
sl@0
   613
		@pre 			None.
sl@0
   614
		@post			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised.
sl@0
   615
	 */
sl@0
   616
	static CExampleInterface_DefectKRN53SL4Q_UnitTest* NewL(CDataLogger& aDataLogger,
sl@0
   617
											MUnitTestObserver& aObserver);
sl@0
   618
sl@0
   619
	/**
sl@0
   620
		@fn				RunError(TInt aError)
sl@0
   621
		Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   622
						to restore the CExampleInterface_DefectKRN53SL4Q_UnitTest
sl@0
   623
						object to a sensible state.
sl@0
   624
						(called by the Active Scheduler immediately before the Panic).
sl@0
   625
		Error Condition	: @see CUnitTest::RunError().
sl@0
   626
		@since			7.0
sl@0
   627
		@return			TInt KErrNone if cleanup successful, otherwise
sl@0
   628
						@see CUnitTest::RunError()
sl@0
   629
		@pre 			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised.
sl@0
   630
		@post			The object has been restored to a sensible state.
sl@0
   631
	 */
sl@0
   632
	inline TInt RunError(TInt aError);
sl@0
   633
sl@0
   634
	/**
sl@0
   635
		@fn				~CExampleInterface_DefectKRN53SL4Q_UnitTest()
sl@0
   636
		Intended Usage	: Standard Destructor.
sl@0
   637
		Error Condition	: None.	
sl@0
   638
		@since			7.0
sl@0
   639
		@pre 			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
sl@0
   640
		@post			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully destroyed.
sl@0
   641
	*/
sl@0
   642
	~CExampleInterface_DefectKRN53SL4Q_UnitTest();
sl@0
   643
sl@0
   644
private:
sl@0
   645
	/**
sl@0
   646
		@fn				CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger,
sl@0
   647
														MUnitTestObserver& aObserver)
sl@0
   648
		Intended Usage	: Default constructor.
sl@0
   649
		Error Condition	: None. 
sl@0
   650
		@since			7.0
sl@0
   651
		@param			aDataLogger The output logging object.
sl@0
   652
		@param			aObserver The observer of this UnitTest.
sl@0
   653
		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
sl@0
   654
		@pre 			None.
sl@0
   655
		@post			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
sl@0
   656
	*/
sl@0
   657
	inline CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger,
sl@0
   658
											MUnitTestObserver& aObserver);
sl@0
   659
sl@0
   660
	/**
sl@0
   661
		@fn				void ConstructL()
sl@0
   662
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
   663
		to complete the object initialisation.
sl@0
   664
		Error Condition	: Leaves with an error code.
sl@0
   665
		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
sl@0
   666
		@since			7.0
sl@0
   667
		@return			None 
sl@0
   668
		@pre 			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
sl@0
   669
		@post			CExampleInterface_DefectKRN53SL4Q_UnitTest is fully initialised.
sl@0
   670
	*/
sl@0
   671
	void ConstructL();
sl@0
   672
sl@0
   673
	/**
sl@0
   674
	The context of the Unit Test.
sl@0
   675
	i.e The CExampleInterface class tested by this UnitTest's transitions.
sl@0
   676
	 */
sl@0
   677
	CExampleInterface_UnitTestContext* iUTContext;
sl@0
   678
	TExampleInterface_StateAccessor*	iStateAccessor;
sl@0
   679
sl@0
   680
	// C'tor, d'tor, and method transition validators
sl@0
   681
	TExampleInterface_Ctor_TransitionValidator*	iCtorValidator;
sl@0
   682
	TExampleInterface_Default_TransitionValidator*	iDefaultValidator;
sl@0
   683
	TExampleInterface_Dtor_TransitionValidator*	iDtorValidator;
sl@0
   684
	};	// CExampleInterface_DefectKRN53SL4Q_UnitTest
sl@0
   685
sl@0
   686
#endif