os/ossrv/lowlevellibsandfws/pluginfw/Framework/FrameTests/MagicUnitTests.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the 
    15 // class CAllTransitionsUnitTest	
    16 // Note	: All the REComSession references from this file
    17 // These are simple fudges for early development tests
    18 // before the true server migration of the code.
    19 // 
    20 //
    21 
    22 #include <e32uid.h>
    23 
    24 #include "TestUtilities.h"	// For __FILE__LINE__
    25 #include "Interface.h"
    26 #include <ecom/test_bed/datalogger.h>
    27 
    28 #include "MagicUnitTests.h"
    29 #include "MagicTransitions.h"
    30 #include "MagicTransitionValidation.h"
    31 
    32 #include "TlsData.h"		// For GlobalData
    33 
    34 #define UNUSED_VAR(a) a = a
    35 
    36 // ______________________________________________________________________________
    37 //
    38 _LIT(KInterfaceCreateAndDestroyUnitTest,"CExampleInterfaceCreateAndDestroyUnitTest");
    39 
    40 CExampleInterfaceCreateAndDestroyUnitTest* CExampleInterfaceCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger,
    41 											MUnitTestObserver& aObserver)
    42 	{
    43 	CExampleInterfaceCreateAndDestroyUnitTest* self = 
    44 					new(ELeave) CExampleInterfaceCreateAndDestroyUnitTest(aDataLogger,
    45 																aObserver);
    46 	CleanupStack::PushL(self);
    47 	// Chain to the base which calls the ConstructL
    48 	self->ConstructL();
    49 	CleanupStack::Pop();
    50 	return self; 
    51 	}
    52 
    53 TInt CExampleInterfaceCreateAndDestroyUnitTest::RunError(TInt aError)
    54 	{
    55 	// The RunL left so chain to the base first and then cleanup
    56 	TInt error = CUnitTest::RunError(aError);	// Chain to base
    57 	delete iUTContext;
    58 	iUTContext = NULL;
    59 	delete iStateAccessor;
    60 	iStateAccessor = NULL;
    61 	delete iCtorValidator;
    62 	delete iDtorValidator;
    63 	iCtorValidator = 0;
    64 	iDtorValidator = 0;
    65 
    66 	return error;
    67 	}
    68 
    69 CExampleInterfaceCreateAndDestroyUnitTest::~CExampleInterfaceCreateAndDestroyUnitTest()
    70 	{
    71 	// Simply delete our test class instance
    72 	delete iUTContext;
    73 	delete iStateAccessor;
    74 	delete iCtorValidator;
    75 	delete iDtorValidator;
    76 
    77 	}
    78 
    79 CExampleInterfaceCreateAndDestroyUnitTest::CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
    80 																	MUnitTestObserver& aObserver)
    81 : CUnitTest(KInterfaceCreateAndDestroyUnitTest, aDataLogger, aObserver)
    82 	{
    83 	//Do nothing
    84 	}
    85 
    86 // Now the Individual transitions need to be added.
    87 void CExampleInterfaceCreateAndDestroyUnitTest::ConstructL()
    88 	{
    89 	// Perform the base class initialization
    90 	UnitTestConstructL();
    91 
    92 	// Create the Unit test state accessor
    93 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor();
    94 	
    95 	// context
    96 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
    97 
    98 	// Add the Transitions in the order they are to run
    99 	// C'tor first, D'tor last...
   100 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   101 	AddTransitionL(new(ELeave)CExampleInterfaceNewLTransition(*iUTContext,*iCtorValidator));
   102 	
   103 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   104 	AddTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext,*iDtorValidator));
   105 	}
   106 // ______________________________________________________________________________
   107 //
   108 _LIT(KExampleInterfaceAltCreateAndDestroyUnitTest,"CExampleInterfaceAltCreateAndDestroyUnitTest");
   109 
   110 CExampleInterfaceAltCreateAndDestroyUnitTest* CExampleInterfaceAltCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger,
   111 											MUnitTestObserver& aObserver)
   112 	{
   113 	CExampleInterfaceAltCreateAndDestroyUnitTest* self = 
   114 					new(ELeave) CExampleInterfaceAltCreateAndDestroyUnitTest(aDataLogger,
   115 																aObserver);
   116 	CleanupStack::PushL(self);
   117 	// Chain to the base which calls the ConstructL
   118 	self->ConstructL();
   119 	CleanupStack::Pop(self);
   120 	return self; 
   121 	}
   122 
   123 TInt CExampleInterfaceAltCreateAndDestroyUnitTest::RunError(TInt aError)
   124 	{
   125 	// The RunL left so chain to the base first and then cleanup
   126 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   127 	delete iUTContext;
   128 	iUTContext = NULL;
   129 	delete iStateAccessor;
   130 	iStateAccessor = NULL;
   131 	delete iCtorValidator;
   132 	iCtorValidator = NULL;
   133 	delete iDtorValidator;
   134 	iDtorValidator = NULL;
   135 
   136 	return error;
   137 	}
   138 
   139 CExampleInterfaceAltCreateAndDestroyUnitTest::~CExampleInterfaceAltCreateAndDestroyUnitTest()
   140 	{
   141 	// Simply delete our test class instance
   142 	delete iUTContext;
   143 	delete iStateAccessor;
   144 	delete iCtorValidator;
   145 	delete iDtorValidator;
   146 
   147 	}
   148 
   149 CExampleInterfaceAltCreateAndDestroyUnitTest::CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
   150 																	MUnitTestObserver& aObserver)
   151 : CUnitTest(KExampleInterfaceAltCreateAndDestroyUnitTest, aDataLogger, aObserver)
   152 	{
   153 	//Do nothing
   154 	}
   155 
   156 // Now the Individual transitions need to be added.
   157 void CExampleInterfaceAltCreateAndDestroyUnitTest::ConstructL()
   158 	{
   159 	// Perform the base class initialization
   160 	UnitTestConstructL();
   161 
   162 	// Create the Unit test state accessor
   163 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor();
   164 	// context
   165 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   166 
   167 	// Create the required validators
   168 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   169 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   170 
   171 	// Add the transitions in the order they are to run
   172 	AddTransitionL(new(ELeave)CExampleInterfaceNewWPLTransition(*iUTContext, *iCtorValidator));
   173 	AddTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext, *iDtorValidator));
   174 
   175 	AddTransitionL(new(ELeave)CExampleInterfaceNewResolveLTransition(*iUTContext, *iCtorValidator));
   176 	AddTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext, *iDtorValidator));
   177 
   178 	}
   179 
   180 // ______________________________________________________________________________
   181 //
   182 _LIT(KExampleInterfaceListAllImplementationsUnitTest,"CExampleInterface_ListImplementations_UnitTest");
   183 
   184 CExampleInterface_ListImplementations_UnitTest* CExampleInterface_ListImplementations_UnitTest::NewL(CDataLogger& aDataLogger,
   185 											MUnitTestObserver& aObserver)
   186 	{
   187 	CExampleInterface_ListImplementations_UnitTest* self = 
   188 					new(ELeave) CExampleInterface_ListImplementations_UnitTest(aDataLogger,
   189 																aObserver);
   190 	CleanupStack::PushL(self);
   191 	self->ConstructL();
   192 	CleanupStack::Pop();
   193 	return self; 
   194 	}
   195 
   196 inline TInt CExampleInterface_ListImplementations_UnitTest::RunError(TInt aError)
   197 	{
   198 	// The RunL left so chain to the base first and then cleanup
   199 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   200 	delete iUTContext;
   201 	iUTContext = NULL;
   202 	delete iStateAccessor;
   203 	// delete any validators used
   204 	delete iCtorValidator;
   205 	iCtorValidator = NULL;
   206 	delete iListImplementationsValidator;
   207 	iListImplementationsValidator = NULL;
   208 	delete iDtorValidator;
   209 	iDtorValidator = NULL;
   210 
   211 	return error;
   212 	}
   213 
   214 inline CExampleInterface_ListImplementations_UnitTest::~CExampleInterface_ListImplementations_UnitTest()
   215 	{
   216 	delete iUTContext;
   217 	delete iStateAccessor;
   218 	// delete any validators used
   219 	delete iCtorValidator;
   220 	delete iListImplementationsValidator;
   221 	delete iDtorValidator;
   222 	}
   223 
   224 inline CExampleInterface_ListImplementations_UnitTest::CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger,
   225 																	MUnitTestObserver& aObserver)
   226 : CUnitTest(KExampleInterfaceListAllImplementationsUnitTest, aDataLogger, aObserver)
   227 	{
   228 	//Do nothing
   229 	}
   230 
   231 // Now the Individual transitions need to be added.
   232 inline void CExampleInterface_ListImplementations_UnitTest::ConstructL()
   233 	{
   234 	// Perform the base class initialization
   235 	UnitTestConstructL();
   236 
   237 	// Create the Unit test state accessor
   238 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor;
   239 	// Construct the Unit test context.
   240 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   241 	// Add the Transitions in the order they are to run
   242 	// C'tor first, D'tor last...
   243 	//	Examples of C'tor and D'tor transitions on CExampleInterface class.
   244 	//	using ctor and dtor validators
   245 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   246 	AddTransitionL(new(ELeave)CExampleInterfaceNewLTransition(*iUTContext,*iCtorValidator));
   247 	
   248 	iListImplementationsValidator = new(ELeave) TExampleInterface_ListImplementations_TransitionValidator(*iUTContext);
   249 	AddTransitionL(new(ELeave)CExampleInterfaceListAllImplementationsLTransition(*iUTContext,*iListImplementationsValidator));
   250 	AddTransitionL(new(ELeave)CExampleInterfaceListImplementationsLTransition(*iUTContext,*iListImplementationsValidator));
   251 	
   252 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   253 	AddTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext,*iDtorValidator));
   254 	}
   255 
   256 // ______________________________________________________________________________
   257 //
   258 _LIT(KExampleInterfaceDefectHAN4WZHSYUnitTest,"CExampleInterface_DefectHAN4WZHSY_UnitTest");
   259 
   260 CExampleInterface_DefectHAN4WZHSY_UnitTest* CExampleInterface_DefectHAN4WZHSY_UnitTest::NewL(CDataLogger& aDataLogger,
   261 											MUnitTestObserver& aObserver)
   262 	{
   263 	CExampleInterface_DefectHAN4WZHSY_UnitTest* self = 
   264 					new(ELeave) CExampleInterface_DefectHAN4WZHSY_UnitTest(aDataLogger,
   265 																aObserver);
   266 	CleanupStack::PushL(self);
   267 	self->ConstructL();
   268 	CleanupStack::Pop();
   269 	return self; 
   270 	}
   271 
   272 inline TInt CExampleInterface_DefectHAN4WZHSY_UnitTest::RunError(TInt aError)
   273 	{
   274 	// The RunL left so chain to the base first and then cleanup
   275 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   276 	delete iUTContext;
   277 	delete iStateAccessor;
   278 	
   279 	iUTContext = 0;
   280 	iStateAccessor = 0;
   281 
   282 	delete iCtorValidator;
   283 	delete iDtorValidator;
   284 
   285 	iCtorValidator = 0;
   286 	iDtorValidator = 0;
   287 	
   288 	return error;
   289 	}
   290 
   291 inline CExampleInterface_DefectHAN4WZHSY_UnitTest::~CExampleInterface_DefectHAN4WZHSY_UnitTest()
   292 	{
   293 	// Simply delete our test class instance
   294 	delete iUTContext;
   295 	delete iStateAccessor;
   296 
   297 	delete iCtorValidator;
   298 	delete iDtorValidator;
   299 	}
   300 
   301 inline CExampleInterface_DefectHAN4WZHSY_UnitTest::CExampleInterface_DefectHAN4WZHSY_UnitTest(CDataLogger& aDataLogger,
   302 																	MUnitTestObserver& aObserver)
   303 : CUnitTest(KExampleInterfaceDefectHAN4WZHSYUnitTest, aDataLogger, aObserver)
   304 	{
   305 	//Do nothing
   306 	}
   307 
   308 // Now the Individual transitions need to be added.
   309 inline void CExampleInterface_DefectHAN4WZHSY_UnitTest::ConstructL()
   310 	{
   311 	// Perform the base class initialization
   312 	UnitTestConstructL();
   313 
   314 	// Create the Unit test state accessor
   315 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor;
   316 	// Construct the Unit test context.
   317 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   318 
   319 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   320 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   321 
   322 	AddTransitionL(new(ELeave)CExampleInterfaceNewLTransition(*iUTContext,*iCtorValidator));
   323 	AddTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext,*iDtorValidator));
   324 	}
   325 
   326 // ______________________________________________________________________________
   327 //
   328 _LIT(KExampleInterfaceDefectCUO4YCEUEUnitTest,"CExampleInterface_DefectCUO4YCEUE_UnitTest");
   329 
   330 CExampleInterface_DefectCUO4YCEUE_UnitTest* CExampleInterface_DefectCUO4YCEUE_UnitTest::NewL(CDataLogger& aDataLogger,
   331 											MUnitTestObserver& aObserver)
   332 	{
   333 	CExampleInterface_DefectCUO4YCEUE_UnitTest* self = 
   334 					new(ELeave) CExampleInterface_DefectCUO4YCEUE_UnitTest(aDataLogger,
   335 																aObserver);
   336 	CleanupStack::PushL(self);
   337 	self->ConstructL();
   338 	CleanupStack::Pop(self);
   339 	return self; 
   340 	}
   341 
   342 inline TInt CExampleInterface_DefectCUO4YCEUE_UnitTest::RunError(TInt aError)
   343 	{
   344 	// The RunL left so chain to the base first and then cleanup
   345 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   346     delete iUTContext;
   347     delete iStateAccessor;
   348 
   349     delete iCtorValidator;
   350     delete iDtorValidator;
   351 
   352     iUTContext = 0;
   353     iStateAccessor = 0;
   354 
   355     iCtorValidator = 0;
   356     iDtorValidator = 0;
   357 
   358 	return error;
   359 	}
   360 
   361 inline CExampleInterface_DefectCUO4YCEUE_UnitTest::~CExampleInterface_DefectCUO4YCEUE_UnitTest()
   362 	{
   363 	// Simply delete our test class instance
   364 	delete iUTContext;
   365 	delete iStateAccessor;
   366 
   367 	delete iCtorValidator;
   368 	delete iDtorValidator;
   369 	}
   370 
   371 inline CExampleInterface_DefectCUO4YCEUE_UnitTest::CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger,
   372 																	MUnitTestObserver& aObserver)
   373 : CUnitTest(KExampleInterfaceDefectCUO4YCEUEUnitTest, aDataLogger, aObserver)
   374 	{
   375 	//Do nothing
   376 	}
   377 
   378 // Now the Individual transitions need to be added.
   379 inline void CExampleInterface_DefectCUO4YCEUE_UnitTest::ConstructL()
   380 	{
   381 	// Perform the base class initialization
   382 	UnitTestConstructL();
   383 
   384 	// Create the Unit test state accessor
   385 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor;
   386 	// Construct the Unit test context.
   387 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   388 
   389 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   390 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   391 
   392 	AddTransitionL(new(ELeave)CExampleInterfaceDoubleNewLTransition(*iUTContext,*iCtorValidator));
   393 	AddTransitionL(new(ELeave)CExampleInterfaceDoubleDtorTransition(*iUTContext,*iDtorValidator));
   394 	}
   395 
   396 // ______________________________________________________________________________
   397 //
   398 _LIT(KExampleInterfaceDefectEVS4Z9BPGUnitTest,"CExampleInterface_DefectEVS4Z9BPG_UnitTest");
   399 
   400 CExampleInterface_DefectEVS4Z9BPG_UnitTest* CExampleInterface_DefectEVS4Z9BPG_UnitTest::NewL(CDataLogger& aDataLogger,
   401 											MUnitTestObserver& aObserver)
   402 	{
   403 	CExampleInterface_DefectEVS4Z9BPG_UnitTest* self = 
   404 					new(ELeave) CExampleInterface_DefectEVS4Z9BPG_UnitTest(aDataLogger,
   405 																aObserver);
   406 	CleanupStack::PushL(self);
   407 	self->ConstructL();
   408 	CleanupStack::Pop(self);
   409 	return self; 
   410 	}
   411 
   412 inline TInt CExampleInterface_DefectEVS4Z9BPG_UnitTest::RunError(TInt aError)
   413 	{
   414 	// The RunL left so chain to the base first and then cleanup
   415 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   416     delete iUTContext;
   417     delete iStateAccessor;
   418 
   419     delete iCtorValidator;
   420     delete iDefaultValidator;
   421     delete iDtorValidator;
   422 
   423     iUTContext = 0;
   424     iStateAccessor = 0;
   425 
   426     iCtorValidator = 0;
   427     iDefaultValidator = 0;
   428     iDtorValidator = 0;
   429 
   430 	return error;
   431 	}
   432 
   433 inline CExampleInterface_DefectEVS4Z9BPG_UnitTest::~CExampleInterface_DefectEVS4Z9BPG_UnitTest()
   434 	{
   435 	// Simply delete our test class instance
   436 	delete iUTContext;
   437 	delete iStateAccessor;
   438 
   439 	delete iCtorValidator;
   440 	delete iDefaultValidator;
   441 	delete iDtorValidator;
   442 	}
   443 
   444 inline CExampleInterface_DefectEVS4Z9BPG_UnitTest::CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger,
   445 																	MUnitTestObserver& aObserver)
   446 : CUnitTest(KExampleInterfaceDefectEVS4Z9BPGUnitTest, aDataLogger, aObserver)
   447 	{
   448 	//Do nothing
   449 	}
   450 
   451 // Now the Individual transitions need to be added.
   452 inline void CExampleInterface_DefectEVS4Z9BPG_UnitTest::ConstructL()
   453 	{
   454 	// Perform the base class initialization
   455 	UnitTestConstructL();
   456 
   457 	// Create the Unit test state accessor
   458 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor;
   459 	// Construct the Unit test context.
   460 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   461 
   462 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   463 	iDefaultValidator = new(ELeave) TExampleInterface_Default_TransitionValidator(*iUTContext);
   464 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   465 
   466 	AddTransitionL(new(ELeave)CExampleInterfaceDoubleNewLTransition(*iUTContext,*iCtorValidator));
   467 	AddTransitionL(new(ELeave)CExampleInterfaceDoMethodLTransition(*iUTContext,*iDefaultValidator));
   468 	AddTransitionL(new(ELeave)CExampleInterfaceDoubleDtorTransition(*iUTContext,*iDtorValidator));
   469 	}
   470 
   471 // ______________________________________________________________________________
   472 //
   473 _LIT(KExampleInterfaceDefectKRN53SL4QUnitTest,"CExampleInterface_DefectKRN53SL4Q_UnitTest");
   474 
   475 CExampleInterface_DefectKRN53SL4Q_UnitTest* CExampleInterface_DefectKRN53SL4Q_UnitTest::NewL(CDataLogger& aDataLogger,
   476 											MUnitTestObserver& aObserver)
   477 	{
   478 	CExampleInterface_DefectKRN53SL4Q_UnitTest* self = 
   479 					new(ELeave) CExampleInterface_DefectKRN53SL4Q_UnitTest(aDataLogger,
   480 																aObserver);
   481 	CleanupStack::PushL(self);
   482 	self->ConstructL();
   483 	CleanupStack::Pop(self);
   484 	return self; 
   485 	}
   486 
   487 inline TInt CExampleInterface_DefectKRN53SL4Q_UnitTest::RunError(TInt aError)
   488 	{
   489 	// The RunL left so chain to the base first and then cleanup
   490 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   491     delete iUTContext;
   492     delete iStateAccessor;
   493 
   494     delete iCtorValidator;
   495     delete iDefaultValidator;
   496     delete iDtorValidator;
   497 
   498     iUTContext = 0;
   499     iStateAccessor = 0;
   500 
   501     iCtorValidator = 0;
   502     iDefaultValidator = 0;
   503     iDtorValidator = 0;
   504 
   505 	return error;
   506 	}
   507 
   508 inline CExampleInterface_DefectKRN53SL4Q_UnitTest::~CExampleInterface_DefectKRN53SL4Q_UnitTest()
   509 	{
   510 	// Simply delete our test class instance
   511 	delete iUTContext;
   512 	delete iStateAccessor;
   513 
   514 	delete iCtorValidator;
   515 	delete iDefaultValidator;
   516 	delete iDtorValidator;
   517 	}
   518 
   519 inline CExampleInterface_DefectKRN53SL4Q_UnitTest::CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger,
   520 																	MUnitTestObserver& aObserver)
   521 : CUnitTest(KExampleInterfaceDefectKRN53SL4QUnitTest, aDataLogger, aObserver)
   522 	{
   523 	//Do nothing
   524 	}
   525 
   526 TInt ThreadFunc(TAny* aTrapHandler)
   527 	{
   528 	User::SetTrapHandler(REINTERPRET_CAST(TCleanupTrapHandler*, aTrapHandler));
   529 
   530 	RImplInfoPtrArray implementations;
   531 	TRAPD(error, CExampleInterface::ListImplementationsL(implementations));
   532     UNUSED_VAR(error);
   533 	return KErrNone;
   534 	}
   535 
   536 // Now the Individual transitions need to be added.
   537 inline void CExampleInterface_DefectKRN53SL4Q_UnitTest::ConstructL()
   538 	{
   539 	// Perform the base class initialization
   540 	UnitTestConstructL();
   541 
   542 	// Create the Unit test state accessor
   543 	iStateAccessor = new(ELeave) TExampleInterface_StateAccessor;
   544 	// Construct the Unit test context.
   545 	iUTContext = new(ELeave) CExampleInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   546 
   547 	_LIT(KNewThreadName, "ListImpl");
   548 	User::Leave (KErrNone != iUTContext->iListImplThread.Create(KNewThreadName(),	// The name of the thread
   549 									   ThreadFunc, //CExampleInterface_UnitTestContext::ListImplementationsThreadFunction,	// The function to be called when this thread resumes
   550 									   2048,				// The stacksize for this thread
   551 									   2048,				// min heap size
   552 									   2048,				// max heap size
   553 									   User::TrapHandler()));	// Parameter to be passed to function
   554 
   555 		
   556 	iCtorValidator = new(ELeave) TExampleInterface_Ctor_TransitionValidator(*iUTContext);
   557 	iDefaultValidator = new(ELeave) TExampleInterface_Default_TransitionValidator(*iUTContext);
   558 	iDtorValidator = new(ELeave) TExampleInterface_Dtor_TransitionValidator(*iUTContext);
   559 
   560 	AddTransitionL(new(ELeave)CExampleInterfaceNewLTransition(*iUTContext,*iCtorValidator));
   561 	AddTransitionL(new(ELeave)CExampleInterfaceListImplementationsLNewThreadTransition(*iUTContext,*iDefaultValidator));
   562 	AddBlockingTransitionL(new(ELeave)CExampleInterfaceDtorTransition(*iUTContext,*iDtorValidator));
   563 	}
   564