First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the definition of the
15 // class CExampleInterfaceUnitTest
19 #ifndef __MAGICUNITTEST_H__
20 #define __MAGICUNITTEST_H__
24 #include <ecom/test_bed/unittest.h>
25 #include "MagicStateAccessors.h"
26 #include "MagicTransitions.h"
27 #include "MagicTransitionValidation.h"
29 // ______________________________________________________________________________
33 Comments : UnitTest CreateAndDestroy on the CExampleInterface test class.
35 class CExampleInterfaceCreateAndDestroyUnitTest : public CUnitTest
39 @fn NewL(CDataLogger& aDataLogger,
40 MUnitTestObserver& aObserver)
41 Intended Usage : Standard two-phase construction which leaves nothing on the
43 Error Condition : Leaves with the error code.
46 @param aDataLogger The output logging object.
47 @param aObserver The observer of this UnitTest.
48 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
49 @return CExampleInterfaceCreateAndDestroyUnitTest* The constructed object.
51 @post CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
53 static CExampleInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
54 MUnitTestObserver& aObserver);
57 @fn RunError(TInt aError)
58 Intended Usage : Intercept the panic caused by a RunL leave,
59 to restore the CExampleInterfaceCreateAndDestroyUnitTest
60 object to a sensible state.
61 (called by the Active Scheduler immediately before the Panic).
62 Error Condition : @see CUnitTest::RunError().
64 @return TInt KErrNone if cleanup successful, otherwise
65 @see CUnitTest::RunError()
66 @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
67 @post The object has been restored to a sensible state.
69 inline TInt RunError(TInt aError);
72 @fn ~CExampleInterfaceCreateAndDestroyUnitTest()
73 Intended Usage : Standard Destructor.
74 Error Condition : None.
76 @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
77 @post CExampleInterfaceCreateAndDestroyUnitTest is fully destroyed.
79 inline ~CExampleInterfaceCreateAndDestroyUnitTest();
83 @fn CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
84 MUnitTestObserver& aObserver)
85 Intended Usage : Default constructor.
86 Error Condition : None.
88 @param aDataLogger The output logging object.
89 @param aObserver The observer of this UnitTest.
90 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
92 @post CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
94 inline CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
95 MUnitTestObserver& aObserver);
99 Intended Usage : Second phase of safe two phase construction,
100 to complete the object initialisation.
101 Error Condition : Leaves with an error code.
102 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
105 @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed.
106 @post CExampleInterfaceCreateAndDestroyUnitTest is fully initialised.
108 inline void ConstructL();
111 The context of the Unit Test.
112 i.e The CExampleInterface class tested by this UintTest's transitions.
114 CExampleInterface_UnitTestContext* iUTContext;
115 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
116 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
117 TExampleInterface_StateAccessor* iStateAccessor;
118 REComSession* iEComSession;
121 // ______________________________________________________________________________
125 Comments : UnitTest AltCreateAndDestroy on the CExampleInterface test class.
127 class CExampleInterfaceAltCreateAndDestroyUnitTest : public CUnitTest
131 @fn NewL(CDataLogger& aDataLogger,
132 MUnitTestObserver& aObserver)
133 Intended Usage : Standard two-phase construction which leaves nothing on the
135 Error Condition : Leaves with the error code.
138 @param aDataLogger The output logging object.
139 @param aObserver The observer of this UnitTest.
140 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
141 @return CExampleInterfaceAltCreateAndDestroyUnitTest* The constructed object.
143 @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised.
145 static CExampleInterfaceAltCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
146 MUnitTestObserver& aObserver);
149 @fn RunError(TInt aError)
150 Intended Usage : Intercept the panic caused by a RunL leave,
151 to restore the CExampleInterfaceAltCreateAndDestroyUnitTest
152 object to a sensible state.
153 (called by the Active Scheduler immediately before the Panic).
154 Error Condition : @see CUnitTest::RunError().
156 @return TInt KErrNone if cleanup successful, otherwise
157 @see CUnitTest::RunError()
158 @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised.
159 @post The object has been restored to a sensible state.
161 inline TInt RunError(TInt aError);
164 @fn ~CExampleInterfaceAltCreateAndDestroyUnitTest()
165 Intended Usage : Standard Destructor.
166 Error Condition : None.
168 @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
169 @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully destroyed.
171 inline ~CExampleInterfaceAltCreateAndDestroyUnitTest();
175 @fn CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
176 MUnitTestObserver& aObserver)
177 Intended Usage : Default constructor.
178 Error Condition : None.
180 @param aDataLogger The output logging object.
181 @param aObserver The observer of this UnitTest.
182 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
184 @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
186 inline CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
187 MUnitTestObserver& aObserver);
190 @fn void ConstructL()
191 Intended Usage : Second phase of safe two phase construction,
192 to complete the object initialisation.
193 Error Condition : Leaves with an error code.
194 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
197 @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed.
198 @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully initialised.
200 inline void ConstructL();
203 The context of the Unit Test.
204 i.e The CExampleInterface class tested by this UnitTest's transitions.
206 CExampleInterface_UnitTestContext* iUTContext;
207 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
208 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
209 TExampleInterface_StateAccessor* iStateAccessor;
210 REComSession* iEComSession;
214 // ______________________________________________________________________________
218 Comments : Unit Test for the ListI mplementations functions on CExampleInterface,
219 the class under test.
221 class CExampleInterface_ListImplementations_UnitTest : public CUnitTest
225 @fn NewL(CDataLogger& aDataLogger,
226 MUnitTestObserver& aObserver)
227 Intended Usage : Standard two-phase construction which leaves nothing on the
229 Error Condition : Leaves with the error code.
232 @param aDataLogger The output logging object.
233 @param aObserver The observer of this UnitTest.
234 @return CExampleInterface_ListImplementations_UnitTest* The constructed
237 @post CExampleInterface_ListImplementations_UnitTest is fully
238 constructed, and initialised.
240 static CExampleInterface_ListImplementations_UnitTest* NewL(CDataLogger& aDataLogger,
241 MUnitTestObserver& aObserver);
244 @fn RunError(TInt aError)
245 Intended Usage : Intercept the panic caused by a RunL leave,
246 to restore the CExampleInterface_ListImplementations_UnitTest
247 object to a sensible state.
248 (called by the Active Scheduler immediately before the Panic).
249 Error Condition : @see CUnitTest::RunError().
251 @return TInt KErrNone if cleanup successful, otherwise
252 @see CUnitTest::RunError()
253 @pre CExampleInterface_ListImplementations_UnitTest is fully
254 constructed, and initialised.
255 @post The object has been restored to a sensible state.
257 inline TInt RunError(TInt aError);
260 @fn ~CExampleInterface_ListImplementations_UnitTest()
261 Intended Usage : Standard Destructor.
262 Error Condition : None.
264 @pre CExampleInterface_ListImplementations_UnitTest is
266 @post CExampleInterface_ListImplementations_UnitTest is
269 ~CExampleInterface_ListImplementations_UnitTest();
273 @fn CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger,
274 MUnitTestObserver& aObserver)
275 Intended Usage : Default constructor.
276 Error Condition : None.
278 @param aDataLogger The output logging object.
279 @param aObserver The observer of this UnitTest.
280 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
282 @post CExampleInterface_ListImplementations_UnitTest is fully
285 inline CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger,
286 MUnitTestObserver& aObserver);
289 @fn void ConstructL()
290 Intended Usage : Second phase of safe two phase construction,
291 to complete the object initialisation.
292 Error Condition : Leaves with an error code.
293 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
296 @pre CExampleInterface_ListImplementations_UnitTest is
298 @post CExampleInterface_ListImplementations_UnitTest is
304 The context of the Unit Test.
305 i.e The CExampleInterface class tested by this UnitTest's transitions.
307 CExampleInterface_UnitTestContext* iUTContext;
308 TExampleInterface_StateAccessor* iStateAccessor;
309 // C'tor, d'tor, and method transition validators
310 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
311 TExampleInterface_ListImplementations_TransitionValidator* iListImplementationsValidator;
312 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
313 REComSession* iEComSession;
314 }; // CExampleInterface_ListImplementations_UnitTest
316 // ______________________________________________________________________________
320 Comments : Unit Test for DefectHAN4WZHSY on CExampleInterface, the class under test.
322 class CExampleInterface_DefectHAN4WZHSY_UnitTest : public CUnitTest
326 @fn NewL(CDataLogger& aDataLogger,
327 MUnitTestObserver& aObserver)
328 Intended Usage : Standard two-phase construction which leaves nothing on the
330 Error Condition : Leaves with the error code.
333 @param aDataLogger The output logging object.
334 @param aObserver The observer of this UnitTest.
335 @return CExampleInterface_DefectHAN4WZHSY_UnitTest* The constructed object.
337 @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed, and initialised.
339 static CExampleInterface_DefectHAN4WZHSY_UnitTest* NewL(CDataLogger& aDataLogger,
340 MUnitTestObserver& aObserver);
343 @fn RunError(TInt aError)
344 Intended Usage : Intercept the panic caused by a RunL leave,
345 to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest
346 object to a sensible state.
347 (called by the Active Scheduler immediately before the Panic).
348 Error Condition : @see CUnitTest::RunError().
350 @return TInt KErrNone if cleanup successful, otherwise
351 @see CUnitTest::RunError()
352 @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed, and initialised.
353 @post The object has been restored to a sensible state.
355 inline TInt RunError(TInt aError);
358 @fn ~CExampleInterface_DefectHAN4WZHSY_UnitTest()
359 Intended Usage : Standard Destructor.
360 Error Condition : None.
362 @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
363 @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully destroyed.
365 ~CExampleInterface_DefectHAN4WZHSY_UnitTest();
369 @fn CExampleInterface_DefectHAN4WZHSY_UnitTest(CDataLogger& aDataLogger,
370 MUnitTestObserver& aObserver)
371 Intended Usage : Default constructor.
372 Error Condition : None.
374 @param aDataLogger The output logging object.
375 @param aObserver The observer of this UnitTest.
376 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
378 @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
380 inline CExampleInterface_DefectHAN4WZHSY_UnitTest(CDataLogger& aDataLogger,
381 MUnitTestObserver& aObserver);
384 @fn void ConstructL()
385 Intended Usage : Second phase of safe two phase construction,
386 to complete the object initialisation.
387 Error Condition : Leaves with an error code.
388 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
391 @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed.
392 @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully initialised.
397 The context of the Unit Test.
398 i.e The CExampleInterface class tested by this UnitTest's transitions.
400 CExampleInterface_UnitTestContext* iUTContext;
401 TExampleInterface_StateAccessor* iStateAccessor;
403 // C'tor, d'tor, and method transition validators
404 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
405 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
406 }; // CExampleInterface_DefectHAN4WZHSY_UnitTest
408 // ______________________________________________________________________________
412 Comments : Unit Test for DefectCUO4YCEUE on CExampleInterface, the class under test.
414 class CExampleInterface_DefectCUO4YCEUE_UnitTest : public CUnitTest
418 @fn NewL(CDataLogger& aDataLogger,
419 MUnitTestObserver& aObserver)
420 Intended Usage : Standard two-phase construction which leaves nothing on the
422 Error Condition : Leaves with the error code.
425 @param aDataLogger The output logging object.
426 @param aObserver The observer of this UnitTest.
427 @return CExampleInterface_DefectCUO4YCEUE_UnitTest* The constructed object.
429 @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised.
431 static CExampleInterface_DefectCUO4YCEUE_UnitTest* NewL(CDataLogger& aDataLogger,
432 MUnitTestObserver& aObserver);
435 @fn RunError(TInt aError)
436 Intended Usage : Intercept the panic caused by a RunL leave,
437 to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest
438 object to a sensible state.
439 (called by the Active Scheduler immediately before the Panic).
440 Error Condition : @see CUnitTest::RunError().
442 @return TInt KErrNone if cleanup successful, otherwise
443 @see CUnitTest::RunError()
444 @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised.
445 @post The object has been restored to a sensible state.
447 inline TInt RunError(TInt aError);
450 @fn ~CExampleInterface_DefectCUO4YCEUE_UnitTest()
451 Intended Usage : Standard Destructor.
452 Error Condition : None.
454 @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
455 @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully destroyed.
457 ~CExampleInterface_DefectCUO4YCEUE_UnitTest();
461 @fn CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger,
462 MUnitTestObserver& aObserver)
463 Intended Usage : Default constructor.
464 Error Condition : None.
466 @param aDataLogger The output logging object.
467 @param aObserver The observer of this UnitTest.
468 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
470 @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
472 inline CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger,
473 MUnitTestObserver& aObserver);
476 @fn void ConstructL()
477 Intended Usage : Second phase of safe two phase construction,
478 to complete the object initialisation.
479 Error Condition : Leaves with an error code.
480 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
483 @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed.
484 @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully initialised.
489 The context of the Unit Test.
490 i.e The CExampleInterface class tested by this UnitTest's transitions.
492 CExampleInterface_UnitTestContext* iUTContext;
493 TExampleInterface_StateAccessor* iStateAccessor;
495 // C'tor, d'tor, and method transition validators
496 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
497 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
498 }; // CExampleInterface_DefectCUO4YCEUE_UnitTest
500 // ______________________________________________________________________________
504 Comments : Unit Test for DefectEVS-4Z9BPG on CExampleInterface, the class under test.
506 class CExampleInterface_DefectEVS4Z9BPG_UnitTest : public CUnitTest
510 @fn NewL(CDataLogger& aDataLogger,
511 MUnitTestObserver& aObserver)
512 Intended Usage : Standard two-phase construction which leaves nothing on the
514 Error Condition : Leaves with the error code.
517 @param aDataLogger The output logging object.
518 @param aObserver The observer of this UnitTest.
519 @return CExampleInterface_DefectEVS4Z9BPG_UnitTest* The constructed object.
521 @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised.
523 static CExampleInterface_DefectEVS4Z9BPG_UnitTest* NewL(CDataLogger& aDataLogger,
524 MUnitTestObserver& aObserver);
527 @fn RunError(TInt aError)
528 Intended Usage : Intercept the panic caused by a RunL leave,
529 to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest
530 object to a sensible state.
531 (called by the Active Scheduler immediately before the Panic).
532 Error Condition : @see CUnitTest::RunError().
534 @return TInt KErrNone if cleanup successful, otherwise
535 @see CUnitTest::RunError()
536 @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised.
537 @post The object has been restored to a sensible state.
539 inline TInt RunError(TInt aError);
542 @fn ~CExampleInterface_DefectEVS4Z9BPG_UnitTest()
543 Intended Usage : Standard Destructor.
544 Error Condition : None.
546 @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
547 @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully destroyed.
549 ~CExampleInterface_DefectEVS4Z9BPG_UnitTest();
553 @fn CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger,
554 MUnitTestObserver& aObserver)
555 Intended Usage : Default constructor.
556 Error Condition : None.
558 @param aDataLogger The output logging object.
559 @param aObserver The observer of this UnitTest.
560 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
562 @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
564 inline CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger,
565 MUnitTestObserver& aObserver);
568 @fn void ConstructL()
569 Intended Usage : Second phase of safe two phase construction,
570 to complete the object initialisation.
571 Error Condition : Leaves with an error code.
572 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
575 @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed.
576 @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully initialised.
581 The context of the Unit Test.
582 i.e The CExampleInterface class tested by this UnitTest's transitions.
584 CExampleInterface_UnitTestContext* iUTContext;
585 TExampleInterface_StateAccessor* iStateAccessor;
587 // C'tor, d'tor, and method transition validators
588 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
589 TExampleInterface_Default_TransitionValidator* iDefaultValidator;
590 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
591 }; // CExampleInterface_DefectEVS4Z9BPG_UnitTest
593 // ______________________________________________________________________________
597 Comments : Unit Test for DefectKRN-53SL4Q on CExampleInterface, the class under test.
599 class CExampleInterface_DefectKRN53SL4Q_UnitTest : public CUnitTest
603 @fn NewL(CDataLogger& aDataLogger,
604 MUnitTestObserver& aObserver)
605 Intended Usage : Standard two-phase construction which leaves nothing on the
607 Error Condition : Leaves with the error code.
610 @param aDataLogger The output logging object.
611 @param aObserver The observer of this UnitTest.
612 @return CExampleInterface_DefectKRN53SL4Q_UnitTest* The constructed object.
614 @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised.
616 static CExampleInterface_DefectKRN53SL4Q_UnitTest* NewL(CDataLogger& aDataLogger,
617 MUnitTestObserver& aObserver);
620 @fn RunError(TInt aError)
621 Intended Usage : Intercept the panic caused by a RunL leave,
622 to restore the CExampleInterface_DefectKRN53SL4Q_UnitTest
623 object to a sensible state.
624 (called by the Active Scheduler immediately before the Panic).
625 Error Condition : @see CUnitTest::RunError().
627 @return TInt KErrNone if cleanup successful, otherwise
628 @see CUnitTest::RunError()
629 @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised.
630 @post The object has been restored to a sensible state.
632 inline TInt RunError(TInt aError);
635 @fn ~CExampleInterface_DefectKRN53SL4Q_UnitTest()
636 Intended Usage : Standard Destructor.
637 Error Condition : None.
639 @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
640 @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully destroyed.
642 ~CExampleInterface_DefectKRN53SL4Q_UnitTest();
646 @fn CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger,
647 MUnitTestObserver& aObserver)
648 Intended Usage : Default constructor.
649 Error Condition : None.
651 @param aDataLogger The output logging object.
652 @param aObserver The observer of this UnitTest.
653 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
655 @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
657 inline CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger,
658 MUnitTestObserver& aObserver);
661 @fn void ConstructL()
662 Intended Usage : Second phase of safe two phase construction,
663 to complete the object initialisation.
664 Error Condition : Leaves with an error code.
665 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
668 @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed.
669 @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully initialised.
674 The context of the Unit Test.
675 i.e The CExampleInterface class tested by this UnitTest's transitions.
677 CExampleInterface_UnitTestContext* iUTContext;
678 TExampleInterface_StateAccessor* iStateAccessor;
680 // C'tor, d'tor, and method transition validators
681 TExampleInterface_Ctor_TransitionValidator* iCtorValidator;
682 TExampleInterface_Default_TransitionValidator* iDefaultValidator;
683 TExampleInterface_Dtor_TransitionValidator* iDtorValidator;
684 }; // CExampleInterface_DefectKRN53SL4Q_UnitTest