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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definitions of the transition classes upon the RStringPool class methods.
18 #ifndef __STRINGPOOLTRANSITIONS_H__
19 #define __STRINGPOOLTRANSITIONS_H__
21 #include <ecom/test_bed/testutilities.h>
22 #include <ecom/test_bed/stateaccessor.h>
23 #include <ecom/test_bed/leaktesttransition.h>
24 #include <ecom/test_bed/datalogger.h>
25 #include <stringpool.h>
26 #include "StringPoolStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 // use the typedef that has been commented out if you don't want to perform memory leak tests
30 typedef CTransition CTransitionType;
31 //typedef CLeakTestTransition CTransitionType;
33 class ExtObj : public MStringPoolCloseCallBack
36 void StringPoolClosing()
43 // ______________________________________________________________________________
47 Comments : Provide all the RStringPool specific
48 parameters and behaviour on the RStringPool
49 test class for a transition.
51 class CStringPool_UnitTestContext : public CUnitTestContext
55 @fn CStringPool_UnitTestContext(CDataLogger& aDataLogger,
56 MStateAccessor& aStateAccessor,
57 MTransitionObserver& aObserver)
58 Intended Usage : Default constructor.
59 Error Condition : None.
61 @param aDataLogger The output logging object.
62 @param aObserver The observer of this UnitTest's Transitions.
63 @param aStateAccessor WhiteBox state access to the RStringPool class under test.
65 @post CStringPool_UnitTestContext is fully constructed, and initialised.
67 inline CStringPool_UnitTestContext(CDataLogger& aDataLogger,
68 MStateAccessor& aStateAccessor,
69 MTransitionObserver& aObserver);
72 @fn ~CStringPool_UnitTestContext()
73 Intended Usage : Default Destructor
75 @pre CStringPool_UnitTestContext is fully constructed.
76 @post CStringPool_UnitTestContext is fully destroyed
78 virtual inline ~CStringPool_UnitTestContext();
80 /** The instance of the class under test */
81 RStringPool iStringPool;
83 // Various strings. a and b are different strings. c is a temporary.
84 // d is the same as a, but separately created
85 // F denotes case insensitiveness; T denotes table strings
86 RString iA, iB, iC, iD, iE, iF, iTE, iUndeletable_EX, iUndeletable_A;
87 RStringF iFA, iFB, iFC, iFD, iFE, iFF, iTFE, iEmptyOne, iFAString, iFADuplicateString;
89 TPtrC8 iADes, iBDes, iDDes, iFADes, iFBDes, iFDDes;
90 TInt iInt, iFint,iNotFound;
91 TStringTable iTestTable;
92 TStringTable iTestTable2;
93 TStringTable iTestTable3;
94 TStringTable iTestTable4;
95 ExtObj iMyExtObj,iMyExtObj2,iMyExtObj3;
100 TInt iIndex1, iIndex2, iIndex3, iIndex4;
102 // The result of boolean comparisons
104 }; // CStringPool_UnitTestContext
106 // ______________________________________________________________________________
110 Comments : Transition test of the RStringPool::NewL method.
112 class CStringPool_NewL_Transition : public CTransitionType
116 @fn CStringPool_NewL_Transition(CUnitTestContext& aUTContext,
117 TTransitionValidator& aValidator)
118 Intended Usage : Standard c'tor method.
119 Error Condition : None.
121 @param aUTContext The context this transition is operating in.
122 @param aValidator Used for checking the pre & post conditions of the test object.
124 @post CStringPool_NewL_Transition is fully constructed.
126 CStringPool_NewL_Transition(CUnitTestContext& aUTContext,
127 TTransitionValidator& aValidator);
130 Intended Usage : To execute the RStringPool::NewL method for the test harness.
131 Error Condition : Leaves with an error code.
132 @leave KErrNoMemory, (@see RStringPool::NewL)
135 @pre CStringPool_NewL_Transition is fully constructed.
136 @post No change in the CStringPool_NewL_Transition apart
137 from iStringPool, which may have changed state.
138 (@see RStringPool::NewL post-condition) for iStringPool's new state.
140 inline void TransitMethodL();
144 Intended Usage : To provide access to the unit test context cast to the correct type.
145 Error Condition : None.
147 @return The unit test context cast to a CStringPool_UnitTestContext
148 @pre iUTContext is a valid CStringPool_UnitTestContext.
149 @post No change in the CStringPool_NewL_Transition
151 inline CStringPool_UnitTestContext& Context() const;
152 }; // CStringPool_NewL_Transition
154 // ______________________________________________________________________________
158 Comments : Transition test of the RStringPool::Dtor method.
160 class CStringPool_Dtor_Transition : public CTransitionType
164 @fn CStringPool_Dtor_Transition(CUnitTestContext& aUTContext,
165 TTransitionValidator& aValidator)
166 Intended Usage : Standard c'tor method.
167 Error Condition : None.
169 @param aUTContext The context this transition is operating in.
170 @param aValidator Used for checking the pre & post conditions of the test object.
172 @post CStringPool_Dtor_Transition is fully constructed.
174 CStringPool_Dtor_Transition(CUnitTestContext& aUTContext,
175 TTransitionValidator& aValidator);
178 Intended Usage : To execute the RStringPool::Dtor method for the test harness.
179 Error Condition : Leaves with an error code.
180 @leave KErrNoMemory, (@see RStringPool::Dtor)
183 @pre CStringPool_Dtor_Transition is fully constructed.
184 @post No change in the CStringPool_Dtor_Transition apart
185 from iStringPool, which may have changed state.
186 (@see RStringPool::Dtor post-condition) for iStringPool's new state.
188 inline void TransitMethodL();
192 Intended Usage : To provide access to the unit test context cast to the correct type.
193 Error Condition : None.
195 @return The unit test context cast to a CStringPool_UnitTestContext
196 @pre iUTContext is a valid CStringPool_UnitTestContext.
197 @post No change in the CStringPool_Dtor_Transition
199 inline CStringPool_UnitTestContext& Context() const;
200 }; // CStringPool_Dtor_Transition
202 // Add additional Transition class definitions here...
205 // ______________________________________________________________________________
209 Comments : Transition test of the RStringPool::AeqA method.
211 class CStringPool_AeqA_Transition : public CTransitionType
215 @fn CRStringPool_AeqA_Transition(CUnitTestContext& aUTContext,
216 TTransitionValidator& aValidator)
217 Intended Usage : Standard c'tor method.
218 Error Condition : None.
220 @param aUTContext The context this transition is operating in.
221 @param aValidator Used for checking the pre & post conditions of the test object.
223 @post CRStringPool_AeqA_Transition is fully constructed.
225 CStringPool_AeqA_Transition(CUnitTestContext& aUTContext,
226 TTransitionValidator& aValidator);
229 Intended Usage : To execute the RStringPool::AeqA method for the test harness.
230 Error Condition : Leaves with an error code.
231 @leave KErrNoMemory, (@see RStringPool::AeqA)
234 @pre CRStringPool_AeqA_Transition is fully constructed.
235 @post No change in the CRStringPool_AeqA_Transition apart
236 from iRStringPool, which may have changed state.
237 (@see RStringPool::AeqA post-condition) for iRStringPool's new state.
239 inline void TransitMethodL();
243 Intended Usage : To provide access to the unit test context cast to the correct type.
244 Error Condition : None.
246 @return The unit test context cast to a CRStringPool_UnitTestContext
247 @pre iUTContext is a valid CRStringPool_UnitTestContext.
248 @post No change in the CRStringPool_AeqA_Transition
250 inline CStringPool_UnitTestContext& Context() const;
251 }; // CRStringPool_AeqA_Transition
253 // ______________________________________________________________________________
257 Comments : Transition test of the StringPool::AneA method.
259 class CStringPool_AneA_Transition : public CTransitionType
263 @fn CStringPool_AneA_Transition(CUnitTestContext& aUTContext,
264 TTransitionValidator& aValidator)
265 Intended Usage : Standard c'tor method.
266 Error Condition : None.
268 @param aUTContext The context this transition is operating in.
269 @param aValidator Used for checking the pre & post conditions of the test object.
271 @post CStringPool_AneA_Transition is fully constructed.
273 CStringPool_AneA_Transition(CUnitTestContext& aUTContext,
274 TTransitionValidator& aValidator);
277 Intended Usage : To execute the StringPool::AneA method for the test harness.
278 Error Condition : Leaves with an error code.
279 @leave KErrNoMemory, (@see StringPool::AneA)
282 @pre CStringPool_AneA_Transition is fully constructed.
283 @post No change in the CStringPool_AneA_Transition apart
284 from iStringPool, which may have changed state.
285 (@see StringPool::AneA post-condition) for iStringPool's new state.
287 inline void TransitMethodL();
291 Intended Usage : To provide access to the unit test context cast to the correct type.
292 Error Condition : None.
294 @return The unit test context cast to a CStringPool_UnitTestContext
295 @pre iUTContext is a valid CStringPool_UnitTestContext.
296 @post No change in the CStringPool_AneA_Transition
298 inline CStringPool_UnitTestContext& Context() const;
299 }; // CStringPool_AneA_Transition
302 // ______________________________________________________________________________
306 Comments : Transition test of the StringPool::AeqB method.
308 class CStringPool_AeqB_Transition : public CTransitionType
312 @fn CStringPool_AeqB_Transition(CUnitTestContext& aUTContext,
313 TTransitionValidator& aValidator)
314 Intended Usage : Standard c'tor method.
315 Error Condition : None.
317 @param aUTContext The context this transition is operating in.
318 @param aValidator Used for checking the pre & post conditions of the test object.
320 @post CStringPool_AeqB_Transition is fully constructed.
322 CStringPool_AeqB_Transition(CUnitTestContext& aUTContext,
323 TTransitionValidator& aValidator);
326 Intended Usage : To execute the StringPool::AeqB method for the test harness.
327 Error Condition : Leaves with an error code.
328 @leave KErrNoMemory, (@see StringPool::AeqB)
331 @pre CStringPool_AeqB_Transition is fully constructed.
332 @post No change in the CStringPool_AeqB_Transition apart
333 from iStringPool, which may have changed state.
334 (@see StringPool::AeqB post-condition) for iStringPool's new state.
336 inline void TransitMethodL();
340 Intended Usage : To provide access to the unit test context cast to the correct type.
341 Error Condition : None.
343 @return The unit test context cast to a CStringPool_UnitTestContext
344 @pre iUTContext is a valid CStringPool_UnitTestContext.
345 @post No change in the CStringPool_AeqB_Transition
347 inline CStringPool_UnitTestContext& Context() const;
348 }; // CStringPool_AeqB_Transition
350 // ______________________________________________________________________________
354 Comments : Transition test of the StringPool::AneB method.
356 class CStringPool_AneB_Transition : public CTransitionType
360 @fn CStringPool_AneB_Transition(CUnitTestContext& aUTContext,
361 TTransitionValidator& aValidator)
362 Intended Usage : Standard c'tor method.
363 Error Condition : None.
365 @param aUTContext The context this transition is operating in.
366 @param aValidator Used for checking the pre & post conditions of the test object.
368 @post CStringPool_AneB_Transition is fully constructed.
370 CStringPool_AneB_Transition(CUnitTestContext& aUTContext,
371 TTransitionValidator& aValidator);
374 Intended Usage : To execute the StringPool::AneB method for the test harness.
375 Error Condition : Leaves with an error code.
376 @leave KErrNoMemory, (@see StringPool::AneB)
379 @pre CStringPool_AneB_Transition is fully constructed.
380 @post No change in the CStringPool_AneB_Transition apart
381 from iStringPool, which may have changed state.
382 (@see StringPool::AneB post-condition) for iStringPool's new state.
384 inline void TransitMethodL();
388 Intended Usage : To provide access to the unit test context cast to the correct type.
389 Error Condition : None.
391 @return The unit test context cast to a CStringPool_UnitTestContext
392 @pre iUTContext is a valid CStringPool_UnitTestContext.
393 @post No change in the CStringPool_AneB_Transition
395 inline CStringPool_UnitTestContext& Context() const;
396 }; // CStringPool_AneB_Transition
398 // ______________________________________________________________________________
402 Comments : Transition test of the StringPool::AeqD method.
404 class CStringPool_AeqD_Transition : public CTransitionType
408 @fn CStringPool_AeqD_Transition(CUnitTestContext& aUTContext,
409 TTransitionValidator& aValidator)
410 Intended Usage : Standard c'tor method.
411 Error Condition : None.
413 @param aUTContext The context this transition is operating in.
414 @param aValidator Used for checking the pre & post conditions of the test object.
416 @post CStringPool_AeqD_Transition is fully constructed.
418 CStringPool_AeqD_Transition(CUnitTestContext& aUTContext,
419 TTransitionValidator& aValidator);
422 Intended Usage : To execute the StringPool::AeqD method for the test harness.
423 Error Condition : Leaves with an error code.
424 @leave KErrNoMemory, (@see StringPool::AeqD)
427 @pre CStringPool_AeqD_Transition is fully constructed.
428 @post No change in the CStringPool_AeqD_Transition apart
429 from iStringPool, which may have changed state.
430 (@see StringPool::AeqD post-condition) for iStringPool's new state.
432 inline void TransitMethodL();
436 Intended Usage : To provide access to the unit test context cast to the correct type.
437 Error Condition : None.
439 @return The unit test context cast to a CStringPool_UnitTestContext
440 @pre iUTContext is a valid CStringPool_UnitTestContext.
441 @post No change in the CStringPool_AeqD_Transition
443 inline CStringPool_UnitTestContext& Context() const;
444 }; // CStringPool_AeqD_Transition
446 // ______________________________________________________________________________
450 Comments : Transition test of the StringPool::AneD method.
452 class CStringPool_AneD_Transition : public CTransitionType
456 @fn CStringPool_AneD_Transition(CUnitTestContext& aUTContext,
457 TTransitionValidator& aValidator)
458 Intended Usage : Standard c'tor method.
459 Error Condition : None.
461 @param aUTContext The context this transition is operating in.
462 @param aValidator Used for checking the pre & post conditions of the test object.
464 @post CStringPool_AneD_Transition is fully constructed.
466 CStringPool_AneD_Transition(CUnitTestContext& aUTContext,
467 TTransitionValidator& aValidator);
470 Intended Usage : To execute the StringPool::AneD method for the test harness.
471 Error Condition : Leaves with an error code.
472 @leave KErrNoMemory, (@see StringPool::AneD)
475 @pre CStringPool_AneD_Transition is fully constructed.
476 @post No change in the CStringPool_AneD_Transition apart
477 from iStringPool, which may have changed state.
478 (@see StringPool::AneD post-condition) for iStringPool's new state.
480 inline void TransitMethodL();
484 Intended Usage : To provide access to the unit test context cast to the correct type.
485 Error Condition : None.
487 @return The unit test context cast to a CStringPool_UnitTestContext
488 @pre iUTContext is a valid CStringPool_UnitTestContext.
489 @post No change in the CStringPool_AneD_Transition
491 inline CStringPool_UnitTestContext& Context() const;
492 }; // CStringPool_AneD_Transition
495 // ______________________________________________________________________________
499 Comments : Transition test of the StringPool::Desc method.
501 class CStringPool_Desc_Transition : public CTransitionType
505 @fn CStringPool_Desc_Transition(CUnitTestContext& aUTContext,
506 TTransitionValidator& aValidator)
507 Intended Usage : Standard c'tor method.
508 Error Condition : None.
510 @param aUTContext The context this transition is operating in.
511 @param aValidator Used for checking the pre & post conditions of the test object.
513 @post CStringPool_Desc_Transition is fully constructed.
515 CStringPool_Desc_Transition(CUnitTestContext& aUTContext,
516 TTransitionValidator& aValidator);
519 Intended Usage : To execute the StringPool::Desc method for the test harness.
520 Error Condition : Leaves with an error code.
521 @leave KErrNoMemory, (@see StringPool::Desc)
524 @pre CStringPool_Desc_Transition is fully constructed.
525 @post No change in the CStringPool_Desc_Transition apart
526 from iStringPool, which may have changed state.
527 (@see StringPool::Desc post-condition) for iStringPool's new state.
529 inline void TransitMethodL();
533 Intended Usage : To provide access to the unit test context cast to the correct type.
534 Error Condition : None.
536 @return The unit test context cast to a CStringPool_UnitTestContext
537 @pre iUTContext is a valid CStringPool_UnitTestContext.
538 @post No change in the CStringPool_Desc_Transition
540 inline CStringPool_UnitTestContext& Context() const;
541 }; // CStringPool_Desc_Transition
543 // ______________________________________________________________________________
547 Comments : Transition test of the StringPool::Copy method.
549 class CStringPool_Copy_Transition : public CTransitionType
553 @fn CStringPool_Copy_Transition(CUnitTestContext& aUTContext,
554 TTransitionValidator& aValidator)
555 Intended Usage : Standard c'tor method.
556 Error Condition : None.
558 @param aUTContext The context this transition is operating in.
559 @param aValidator Used for checking the pre & post conditions of the test object.
561 @post CStringPool_Copy_Transition is fully constructed.
563 CStringPool_Copy_Transition(CUnitTestContext& aUTContext,
564 TTransitionValidator& aValidator);
567 Intended Usage : To execute the StringPool::Copy method for the test harness.
568 Error Condition : Leaves with an error code.
569 @leave KErrNoMemory, (@see StringPool::Copy)
572 @pre CStringPool_Copy_Transition is fully constructed.
573 @post No change in the CStringPool_Copy_Transition apart
574 from iStringPool, which may have changed state.
575 (@see StringPool::Copy post-condition) for iStringPool's new state.
577 inline void TransitMethodL();
581 Intended Usage : To provide access to the unit test context cast to the correct type.
582 Error Condition : None.
584 @return The unit test context cast to a CStringPool_UnitTestContext
585 @pre iUTContext is a valid CStringPool_UnitTestContext.
586 @post No change in the CStringPool_Copy_Transition
588 inline CStringPool_UnitTestContext& Context() const;
589 }; // CStringPool_Copy_Transition
591 // ______________________________________________________________________________
595 Comments : Transition test of the StringPool::CDesC method.
597 class CStringPool_CDesC_Transition : public CTransitionType
601 @fn CStringPool_CDesC_Transition(CUnitTestContext& aUTContext,
602 TTransitionValidator& aValidator)
603 Intended Usage : Standard c'tor method.
604 Error Condition : None.
606 @param aUTContext The context this transition is operating in.
607 @param aValidator Used for checking the pre & post conditions of the test object.
609 @post CStringPool_CDesC_Transition is fully constructed.
611 CStringPool_CDesC_Transition(CUnitTestContext& aUTContext,
612 TTransitionValidator& aValidator);
615 Intended Usage : To execute the StringPool::CDesC method for the test harness.
616 Error Condition : Leaves with an error code.
617 @leave KErrNoMemory, (@see StringPool::CDesC)
620 @pre CStringPool_CDesC_Transition is fully constructed.
621 @post No change in the CStringPool_CDesC_Transition apart
622 from iStringPool, which may have changed state.
623 (@see StringPool::CDesC post-condition) for iStringPool's new state.
625 inline void TransitMethodL();
629 Intended Usage : To provide access to the unit test context cast to the correct type.
630 Error Condition : None.
632 @return The unit test context cast to a CStringPool_UnitTestContext
633 @pre iUTContext is a valid CStringPool_UnitTestContext.
634 @post No change in the CStringPool_CDesC_Transition
636 inline CStringPool_UnitTestContext& Context() const;
637 }; // CStringPool_CDesC_Transition
639 // ______________________________________________________________________________
643 Comments : Transition test of the StringPool::Close method.
645 class CStringPool_Close_Transition : public CTransitionType
649 @fn CStringPool_Close_Transition(CUnitTestContext& aUTContext,
650 TTransitionValidator& aValidator)
651 Intended Usage : Standard c'tor method.
652 Error Condition : None.
654 @param aUTContext The context this transition is operating in.
655 @param aValidator Used for checking the pre & post conditions of the test object.
657 @post CStringPool_Close_Transition is fully constructed.
659 CStringPool_Close_Transition(CUnitTestContext& aUTContext,
660 TTransitionValidator& aValidator);
663 Intended Usage : To execute the StringPool::Close method for the test harness.
664 Error Condition : Leaves with an error code.
665 @leave KErrNoMemory, (@see StringPool::Close)
668 @pre CStringPool_Close_Transition is fully constructed.
669 @post No change in the CStringPool_Close_Transition apart
670 from iStringPool, which may have changed state.
671 (@see StringPool::Close post-condition) for iStringPool's new state.
673 inline void TransitMethodL();
677 Intended Usage : To provide access to the unit test context cast to the correct type.
678 Error Condition : None.
680 @return The unit test context cast to a CStringPool_UnitTestContext
681 @pre iUTContext is a valid CStringPool_UnitTestContext.
682 @post No change in the CStringPool_Close_Transition
684 inline CStringPool_UnitTestContext& Context() const;
685 }; // CStringPool_Close_Transition
687 // ______________________________________________________________________________
691 Comments : Transition test of the StringPool::Int method.
693 class CStringPool_Int_Transition : public CTransitionType
697 @fn CStringPool_Int_Transition(CUnitTestContext& aUTContext,
698 TTransitionValidator& aValidator)
699 Intended Usage : Standard c'tor method.
700 Error Condition : None.
702 @param aUTContext The context this transition is operating in.
703 @param aValidator Used for checking the pre & post conditions of the test object.
705 @post CStringPool_Int_Transition is fully constructed.
707 CStringPool_Int_Transition(CUnitTestContext& aUTContext,
708 TTransitionValidator& aValidator);
711 Intended Usage : To execute the StringPool::Int method for the test harness.
712 Error Condition : Leaves with an error code.
713 @leave KErrNoMemory, (@see StringPool::Int)
716 @pre CStringPool_Int_Transition is fully constructed.
717 @post No change in the CStringPool_Int_Transition apart
718 from iStringPool, which may have changed state.
719 (@see StringPool::Int post-condition) for iStringPool's new state.
721 inline void TransitMethodL();
725 Intended Usage : To provide access to the unit test context cast to the correct type.
726 Error Condition : None.
728 @return The unit test context cast to a CStringPool_UnitTestContext
729 @pre iUTContext is a valid CStringPool_UnitTestContext.
730 @post No change in the CStringPool_Int_Transition
732 inline CStringPool_UnitTestContext& Context() const;
733 }; // CStringPool_Int_Transition
736 // ______________________________________________________________________________
740 Comments : Transition test of the StringPool::StringToken method.
742 class CStringPool_StringToken_Transition : public CTransitionType
746 @fn CStringPool_StringToken_Transition(CUnitTestContext& aUTContext,
747 TTransitionValidator& aValidator)
748 Intended Usage : Standard c'tor method.
749 Error Condition : None.
751 @param aUTContext The context this transition is operating in.
752 @param aValidator Used for checking the pre & post conditions of the test object.
754 @post CStringPool_StringToken_Transition is fully constructed.
756 CStringPool_StringToken_Transition(CUnitTestContext& aUTContext,
757 TTransitionValidator& aValidator);
760 Intended Usage : To execute the StringPool::StringToken method for the test harness.
761 Error Condition : Leaves with an error code.
762 @leave KErrNoMemory, (@see StringPool::StringToken)
765 @pre CStringPool_StringToken_Transition is fully constructed.
766 @post No change in the CStringPool_StringToken_Transition apart
767 from iStringPool, which may have changed state.
768 (@see StringPool::StringToken post-condition) for iStringPool's new state.
770 inline void TransitMethodL();
774 Intended Usage : To provide access to the unit test context cast to the correct type.
775 Error Condition : None.
777 @return The unit test context cast to a CStringPool_UnitTestContext
778 @pre iUTContext is a valid CStringPool_UnitTestContext.
779 @post No change in the CStringPool_StringToken_Transition
781 inline CStringPool_UnitTestContext& Context() const;
782 }; // CStringPool_StringToken_Transition
828 // ______________________________________________________________________________
832 Comments : Transition test of the RStringPool::AeqA method.
834 class CStringPool_FAeqA_Transition : public CTransitionType
838 @fn CRStringPool_AeqA_Transition(CUnitTestContext& aUTContext,
839 TTransitionValidator& aValidator)
840 Intended Usage : Standard c'tor method.
841 Error Condition : None.
843 @param aUTContext The context this transition is operating in.
844 @param aValidator Used for checking the pre & post conditions of the test object.
846 @post CRStringPool_AeqA_Transition is fully constructed.
848 CStringPool_FAeqA_Transition(CUnitTestContext& aUTContext,
849 TTransitionValidator& aValidator);
852 Intended Usage : To execute the RStringPool::AeqA method for the test harness.
853 Error Condition : Leaves with an error code.
854 @leave KErrNoMemory, (@see RStringPool::AeqA)
857 @pre CRStringPool_AeqA_Transition is fully constructed.
858 @post No change in the CRStringPool_AeqA_Transition apart
859 from iRStringPool, which may have changed state.
860 (@see RStringPool::AeqA post-condition) for iRStringPool's new state.
862 inline void TransitMethodL();
866 Intended Usage : To provide access to the unit test context cast to the correct type.
867 Error Condition : None.
869 @return The unit test context cast to a CRStringPool_UnitTestContext
870 @pre iUTContext is a valid CRStringPool_UnitTestContext.
871 @post No change in the CRStringPool_AeqA_Transition
873 inline CStringPool_UnitTestContext& Context() const;
874 }; // CRStringPool_AeqA_Transition
876 // ______________________________________________________________________________
880 Comments : Transition test of the StringPool::AneA method.
882 class CStringPool_FAneA_Transition : public CTransitionType
886 @fn CStringPool_FAneA_Transition(CUnitTestContext& aUTContext,
887 TTransitionValidator& aValidator)
888 Intended Usage : Standard c'tor method.
889 Error Condition : None.
891 @param aUTContext The context this transition is operating in.
892 @param aValidator Used for checking the pre & post conditions of the test object.
894 @post CStringPool_FAneA_Transition is fully constructed.
896 CStringPool_FAneA_Transition(CUnitTestContext& aUTContext,
897 TTransitionValidator& aValidator);
900 Intended Usage : To execute the StringPool::AneA method for the test harness.
901 Error Condition : Leaves with an error code.
902 @leave KErrNoMemory, (@see StringPool::AneA)
905 @pre CStringPool_FAneA_Transition is fully constructed.
906 @post No change in the CStringPool_FAneA_Transition apart
907 from iStringPool, which may have changed state.
908 (@see StringPool::AneA post-condition) for iStringPool's new state.
910 inline void TransitMethodL();
914 Intended Usage : To provide access to the unit test context cast to the correct type.
915 Error Condition : None.
917 @return The unit test context cast to a CStringPool_UnitTestContext
918 @pre iUTContext is a valid CStringPool_UnitTestContext.
919 @post No change in the CStringPool_FAneA_Transition
921 inline CStringPool_UnitTestContext& Context() const;
922 }; // CStringPool_FAneA_Transition
925 // ______________________________________________________________________________
929 Comments : Transition test of the StringPool::AeqB method.
931 class CStringPool_FAeqB_Transition : public CTransitionType
935 @fn CStringPool_FAeqB_Transition(CUnitTestContext& aUTContext,
936 TTransitionValidator& aValidator)
937 Intended Usage : Standard c'tor method.
938 Error Condition : None.
940 @param aUTContext The context this transition is operating in.
941 @param aValidator Used for checking the pre & post conditions of the test object.
943 @post CStringPool_FAeqB_Transition is fully constructed.
945 CStringPool_FAeqB_Transition(CUnitTestContext& aUTContext,
946 TTransitionValidator& aValidator);
949 Intended Usage : To execute the StringPool::AeqB method for the test harness.
950 Error Condition : Leaves with an error code.
951 @leave KErrNoMemory, (@see StringPool::AeqB)
954 @pre CStringPool_FAeqB_Transition is fully constructed.
955 @post No change in the CStringPool_FAeqB_Transition apart
956 from iStringPool, which may have changed state.
957 (@see StringPool::AeqB post-condition) for iStringPool's new state.
959 inline void TransitMethodL();
963 Intended Usage : To provide access to the unit test context cast to the correct type.
964 Error Condition : None.
966 @return The unit test context cast to a CStringPool_UnitTestContext
967 @pre iUTContext is a valid CStringPool_UnitTestContext.
968 @post No change in the CStringPool_AeqB_Transition
970 inline CStringPool_UnitTestContext& Context() const;
971 }; // CStringPool_FAeqB_Transition
973 // ______________________________________________________________________________
977 Comments : Transition test of the StringPool::AneB method.
979 class CStringPool_FAneB_Transition : public CTransitionType
983 @fn CStringPool_FAneB_Transition(CUnitTestContext& aUTContext,
984 TTransitionValidator& aValidator)
985 Intended Usage : Standard c'tor method.
986 Error Condition : None.
988 @param aUTContext The context this transition is operating in.
989 @param aValidator Used for checking the pre & post conditions of the test object.
991 @post CStringPool_FAneB_Transition is fully constructed.
993 CStringPool_FAneB_Transition(CUnitTestContext& aUTContext,
994 TTransitionValidator& aValidator);
997 Intended Usage : To execute the StringPool::AneB method for the test harness.
998 Error Condition : Leaves with an error code.
999 @leave KErrNoMemory, (@see StringPool::AneB)
1002 @pre CStringPool_FAneB_Transition is fully constructed.
1003 @post No change in the CStringPool_FAneB_Transition apart
1004 from iStringPool, which may have changed state.
1005 (@see StringPool::AneB post-condition) for iStringPool's new state.
1007 inline void TransitMethodL();
1011 Intended Usage : To provide access to the unit test context cast to the correct type.
1012 Error Condition : None.
1014 @return The unit test context cast to a CStringPool_UnitTestContext
1015 @pre iUTContext is a valid CStringPool_UnitTestContext.
1016 @post No change in the CStringPool_AneB_Transition
1018 inline CStringPool_UnitTestContext& Context() const;
1019 }; // CStringPool_FAneB_Transition
1021 // ______________________________________________________________________________
1025 Comments : Transition test of the StringPool::AeqD method.
1027 class CStringPool_FAeqD_Transition : public CTransitionType
1031 @fn CStringPool_FAeqD_Transition(CUnitTestContext& aUTContext,
1032 TTransitionValidator& aValidator)
1033 Intended Usage : Standard c'tor method.
1034 Error Condition : None.
1036 @param aUTContext The context this transition is operating in.
1037 @param aValidator Used for checking the pre & post conditions of the test object.
1039 @post CStringPool_FAeqD_Transition is fully constructed.
1041 CStringPool_FAeqD_Transition(CUnitTestContext& aUTContext,
1042 TTransitionValidator& aValidator);
1044 @fn TransitMethodL()
1045 Intended Usage : To execute the StringPool::AeqD method for the test harness.
1046 Error Condition : Leaves with an error code.
1047 @leave KErrNoMemory, (@see StringPool::AeqD)
1050 @pre CStringPool_FAeqD_Transition is fully constructed.
1051 @post No change in the CStringPool_FAeqD_Transition apart
1052 from iStringPool, which may have changed state.
1053 (@see StringPool::AeqD post-condition) for iStringPool's new state.
1055 inline void TransitMethodL();
1059 Intended Usage : To provide access to the unit test context cast to the correct type.
1060 Error Condition : None.
1062 @return The unit test context cast to a CStringPool_UnitTestContext
1063 @pre iUTContext is a valid CStringPool_UnitTestContext.
1064 @post No change in the CStringPool_AeqD_Transition
1066 inline CStringPool_UnitTestContext& Context() const;
1067 }; // CStringPool_FAeqD_Transition
1069 // ______________________________________________________________________________
1073 Comments : Transition test of the StringPool::AneD method.
1075 class CStringPool_FAneD_Transition : public CTransitionType
1079 @fn CStringPool_FAneD_Transition(CUnitTestContext& aUTContext,
1080 TTransitionValidator& aValidator)
1081 Intended Usage : Standard c'tor method.
1082 Error Condition : None.
1084 @param aUTContext The context this transition is operating in.
1085 @param aValidator Used for checking the pre & post conditions of the test object.
1087 @post CStringPool_FAneD_Transition is fully constructed.
1089 CStringPool_FAneD_Transition(CUnitTestContext& aUTContext,
1090 TTransitionValidator& aValidator);
1092 @fn TransitMethodL()
1093 Intended Usage : To execute the StringPool::AneD method for the test harness.
1094 Error Condition : Leaves with an error code.
1095 @leave KErrNoMemory, (@see StringPool::AneD)
1098 @pre CStringPool_FAneD_Transition is fully constructed.
1099 @post No change in the CStringPool_FAneD_Transition apart
1100 from iStringPool, which may have changed state.
1101 (@see StringPool::AneD post-condition) for iStringPool's new state.
1103 inline void TransitMethodL();
1107 Intended Usage : To provide access to the unit test context cast to the correct type.
1108 Error Condition : None.
1110 @return The unit test context cast to a CStringPool_UnitTestContext
1111 @pre iUTContext is a valid CStringPool_UnitTestContext.
1112 @post No change in the CStringPool_AneD_Transition
1114 inline CStringPool_UnitTestContext& Context() const;
1115 }; // CStringPool_FAneD_Transition
1118 // ______________________________________________________________________________
1122 Comments : Transition test of the StringPool::Desc method.
1124 class CStringPool_FDesc_Transition : public CTransitionType
1128 @fn CStringPool_FDesc_Transition(CUnitTestContext& aUTContext,
1129 TTransitionValidator& aValidator)
1130 Intended Usage : Standard c'tor method.
1131 Error Condition : None.
1133 @param aUTContext The context this transition is operating in.
1134 @param aValidator Used for checking the pre & post conditions of the test object.
1136 @post CStringPool_FDesc_Transition is fully constructed.
1138 CStringPool_FDesc_Transition(CUnitTestContext& aUTContext,
1139 TTransitionValidator& aValidator);
1141 @fn TransitMethodL()
1142 Intended Usage : To execute the StringPool::Desc method for the test harness.
1143 Error Condition : Leaves with an error code.
1144 @leave KErrNoMemory, (@see StringPool::Desc)
1147 @pre CStringPool_FDesc_Transition is fully constructed.
1148 @post No change in the CStringPool_FDesc_Transition apart
1149 from iStringPool, which may have changed state.
1150 (@see StringPool::Desc post-condition) for iStringPool's new state.
1152 inline void TransitMethodL();
1156 Intended Usage : To provide access to the unit test context cast to the correct type.
1157 Error Condition : None.
1159 @return The unit test context cast to a CStringPool_FUnitTestContext
1160 @pre iUTContext is a valid CStringPool_UnitTestContext.
1161 @post No change in the CStringPool_Desc_Transition
1163 inline CStringPool_UnitTestContext& Context() const;
1164 }; // CStringPool_FDesc_Transition
1166 // ______________________________________________________________________________
1170 Comments : Transition test of the StringPool::Copy method.
1172 class CStringPool_FCopy_Transition : public CTransitionType
1176 @fn CStringPool_FCopy_Transition(CUnitTestContext& aUTContext,
1177 TTransitionValidator& aValidator)
1178 Intended Usage : Standard c'tor method.
1179 Error Condition : None.
1181 @param aUTContext The context this transition is operating in.
1182 @param aValidator Used for checking the pre & post conditions of the test object.
1184 @post CStringPool_FCopy_Transition is fully constructed.
1186 CStringPool_FCopy_Transition(CUnitTestContext& aUTContext,
1187 TTransitionValidator& aValidator);
1189 @fn TransitMethodL()
1190 Intended Usage : To execute the StringPool::Copy method for the test harness.
1191 Error Condition : Leaves with an error code.
1192 @leave KErrNoMemory, (@see StringPool::Copy)
1195 @pre CStringPool_FCopy_Transition is fully constructed.
1196 @post No change in the CStringPool_FCopy_Transition apart
1197 from iStringPool, which may have changed state.
1198 (@see StringPool::Copy post-condition) for iStringPool's new state.
1200 inline void TransitMethodL();
1204 Intended Usage : To provide access to the unit test context cast to the correct type.
1205 Error Condition : None.
1207 @return The unit test context cast to a CStringPool_UnitTestContext
1208 @pre iUTContext is a valid CStringPool_UnitTestContext.
1209 @post No change in the CStringPool_Copy_Transition
1211 inline CStringPool_UnitTestContext& Context() const;
1212 }; // CStringPool_FCopy_Transition
1214 // ______________________________________________________________________________
1218 Comments : Transition test of the StringPool::CDesC method.
1220 class CStringPool_FCDesC_Transition : public CTransitionType
1224 @fn CStringPool_FCDesC_Transition(CUnitTestContext& aUTContext,
1225 TTransitionValidator& aValidator)
1226 Intended Usage : Standard c'tor method.
1227 Error Condition : None.
1229 @param aUTContext The context this transition is operating in.
1230 @param aValidator Used for checking the pre & post conditions of the test object.
1232 @post CStringPool_FCDesC_Transition is fully constructed.
1234 CStringPool_FCDesC_Transition(CUnitTestContext& aUTContext,
1235 TTransitionValidator& aValidator);
1237 @fn TransitMethodL()
1238 Intended Usage : To execute the StringPool::CDesC method for the test harness.
1239 Error Condition : Leaves with an error code.
1240 @leave KErrNoMemory, (@see StringPool::CDesC)
1243 @pre CStringPool_FCDesC_Transition is fully constructed.
1244 @post No change in the CStringPool_FCDesC_Transition apart
1245 from iStringPool, which may have changed state.
1246 (@see StringPool::CDesC post-condition) for iStringPool's new state.
1248 inline void TransitMethodL();
1252 Intended Usage : To provide access to the unit test context cast to the correct type.
1253 Error Condition : None.
1255 @return The unit test context cast to a CStringPool_UnitTestContext
1256 @pre iUTContext is a valid CStringPool_UnitTestContext.
1257 @post No change in the CStringPool_CDesC_Transition
1259 inline CStringPool_UnitTestContext& Context() const;
1260 }; // CStringPool_FCDesC_Transition
1262 // ______________________________________________________________________________
1266 Comments : Transition test of the StringPool::Close method.
1268 class CStringPool_FClose_Transition : public CTransitionType
1272 @fn CStringPool_FClose_Transition(CUnitTestContext& aUTContext,
1273 TTransitionValidator& aValidator)
1274 Intended Usage : Standard c'tor method.
1275 Error Condition : None.
1277 @param aUTContext The context this transition is operating in.
1278 @param aValidator Used for checking the pre & post conditions of the test object.
1280 @post CStringPool_FClose_Transition is fully constructed.
1282 CStringPool_FClose_Transition(CUnitTestContext& aUTContext,
1283 TTransitionValidator& aValidator);
1285 @fn TransitMethodL()
1286 Intended Usage : To execute the StringPool::Close method for the test harness.
1287 Error Condition : Leaves with an error code.
1288 @leave KErrNoMemory, (@see StringPool::Close)
1291 @pre CStringPool_FClose_Transition is fully constructed.
1292 @post No change in the CStringPool_FClose_Transition apart
1293 from iStringPool, which may have changed state.
1294 (@see StringPool::Close post-condition) for iStringPool's new state.
1296 inline void TransitMethodL();
1300 Intended Usage : To provide access to the unit test context cast to the correct type.
1301 Error Condition : None.
1303 @return The unit test context cast to a CStringPool_FUnitTestContext
1304 @pre iUTContext is a valid CStringPool_UnitTestContext.
1305 @post No change in the CStringPool_Close_Transition
1307 inline CStringPool_UnitTestContext& Context() const;
1308 }; // CStringPool_FClose_Transition
1310 // ______________________________________________________________________________
1314 Comments : Transition test of the StringPool::Int method.
1316 class CStringPool_FInt_Transition : public CTransitionType
1320 @fn CStringPool_FInt_Transition(CUnitTestContext& aUTContext,
1321 TTransitionValidator& aValidator)
1322 Intended Usage : Standard c'tor method.
1323 Error Condition : None.
1325 @param aUTContext The context this transition is operating in.
1326 @param aValidator Used for checking the pre & post conditions of the test object.
1328 @post CStringPool_FInt_Transition is fully constructed.
1330 CStringPool_FInt_Transition(CUnitTestContext& aUTContext,
1331 TTransitionValidator& aValidator);
1333 @fn TransitMethodL()
1334 Intended Usage : To execute the StringPool::Int method for the test harness.
1335 Error Condition : Leaves with an error code.
1336 @leave KErrNoMemory, (@see StringPool::Int)
1339 @pre CStringPool_FInt_Transition is fully constructed.
1340 @post No change in the CStringPool_FInt_Transition apart
1341 from iStringPool, which may have changed state.
1342 (@see StringPool::Int post-condition) for iStringPool's new state.
1344 inline void TransitMethodL();
1348 Intended Usage : To provide access to the unit test context cast to the correct type.
1349 Error Condition : None.
1351 @return The unit test context cast to a CStringPool_FUnitTestContext
1352 @pre iUTContext is a valid CStringPool_UnitTestContext.
1353 @post No change in the CStringPool_Int_Transition
1355 inline CStringPool_UnitTestContext& Context() const;
1356 }; // CStringPool_FInt_Transition
1359 // ______________________________________________________________________________
1363 Comments : Transition test of the StringPool::StringToken method.
1365 class CStringPool_FStringToken_Transition : public CTransitionType
1369 @fn CStringPool_FStringToken_Transition(CUnitTestContext& aUTContext,
1370 TTransitionValidator& aValidator)
1371 Intended Usage : Standard c'tor method.
1372 Error Condition : None.
1374 @param aUTContext The context this transition is operating in.
1375 @param aValidator Used for checking the pre & post conditions of the test object.
1377 @post CStringPool_FStringToken_Transition is fully constructed.
1379 CStringPool_FStringToken_Transition(CUnitTestContext& aUTContext,
1380 TTransitionValidator& aValidator);
1382 @fn TransitMethodL()
1383 Intended Usage : To execute the StringPool::StringToken method for the test harness.
1384 Error Condition : Leaves with an error code.
1385 @leave KErrNoMemory, (@see StringPool::StringToken)
1388 @pre CStringPool_FStringToken_Transition is fully constructed.
1389 @post No change in the CStringPool_FStringToken_Transition apart
1390 from iStringPool, which may have changed state.
1391 (@see StringPool::StringToken post-condition) for iStringPool's new state.
1393 inline void TransitMethodL();
1397 Intended Usage : To provide access to the unit test context cast to the correct type.
1398 Error Condition : None.
1400 @return The unit test context cast to a CStringPool_FUnitTestContext
1401 @pre iUTContext is a valid CStringPool_FUnitTestContext.
1402 @post No change in the CStringPool_StringToken_Transition
1404 inline CStringPool_UnitTestContext& Context() const;
1405 }; // CStringPool_FStringToken_Transition
1407 // ______________________________________________________________________________
1411 Comments : Transition test of the StringPool::ShortCtor method.
1413 class CStringPool_ShortCtor_Transition : public CTransitionType
1417 @fn CStringPool_ShortCtor_Transition(CUnitTestContext& aUTContext,
1418 TTransitionValidator& aValidator)
1419 Intended Usage : Standard c'tor method.
1420 Error Condition : None.
1422 @param aUTContext The context this transition is operating in.
1423 @param aValidator Used for checking the pre & post conditions of the test object.
1425 @post CStringPool_ShortCtor_Transition is fully constructed.
1427 CStringPool_ShortCtor_Transition(CUnitTestContext& aUTContext,
1428 TTransitionValidator& aValidator);
1430 @fn TransitMethodL()
1431 Intended Usage : To execute the StringPool::SmallCtor method for the test harness.
1432 Error Condition : Leaves with an error code.
1433 @leave KErrNoMemory, (@see StringPool::SmallCtor)
1436 @pre CStringPool_ShortCtor_Transition is fully constructed.
1437 @post No change in the CStringPool_ShortCtor_Transition apart
1438 from iStringPool, which may have changed state.
1439 (@see StringPool::SmallCtor post-condition) for iStringPool's new state.
1441 inline void TransitMethodL();
1445 Intended Usage : To provide access to the unit test context cast to the correct type.
1446 Error Condition : None.
1448 @return The unit test context cast to a CStringPool_UnitTestContext
1449 @pre iUTContext is a valid CStringPool_UnitTestContext.
1450 @post No change in the CStringPool_ShortCtor_Transition
1452 inline CStringPool_UnitTestContext& Context() const;
1453 }; // CStringPool_ShortCtor_Transition
1455 // ______________________________________________________________________________
1459 Comments : Transition test of the StringPool::IrrelevantCtor method.
1461 class CStringPool_IrrelevantCtor_Transition : public CTransition
1465 @fn CStringPool_IrrelevantCtor_Transition(CUnitTestContext& aUTContext,
1466 TTransitionValidator& aValidator)
1467 Intended Usage : Standard c'tor method.
1468 Error Condition : None.
1470 @param aUTContext The context this transition is operating in.
1471 @param aValidator Used for checking the pre & post conditions of the test object.
1473 @post CStringPool_IrrelevantCtor_Transition is fully constructed.
1475 CStringPool_IrrelevantCtor_Transition(CUnitTestContext& aUTContext,
1476 TTransitionValidator& aValidator);
1478 @fn TransitMethodL()
1479 Intended Usage : To execute the StringPool::IrrelevantCtor method for the test harness.
1480 Error Condition : Leaves with an error code.
1481 @leave KErrNoMemory, (@see StringPool::IrrelevantCtor)
1484 @pre CStringPool_IrrelevantCtor_Transition is fully constructed.
1485 @post No change in the CStringPool_IrrelevantCtor_Transition apart
1486 from iStringPool, which may have changed state.
1487 (@see StringPool::IrrelevantCtor post-condition) for iStringPool's new state.
1489 inline void TransitMethodL();
1493 Intended Usage : To provide access to the unit test context cast to the correct type.
1494 Error Condition : None.
1496 @return The unit test context cast to a CStringPool_UnitTestContext
1497 @pre iUTContext is a valid CStringPool_UnitTestContext.
1498 @post No change in the CStringPool_IrrelevantCtor_Transition
1500 inline CStringPool_UnitTestContext& Context() const;
1501 }; // CStringPool_IrrelevantCtor_Transition
1503 // ______________________________________________________________________________
1507 Comments : Transition test of the StringPool::LongCtor method.
1509 class CStringPool_LongCtor_Transition : public CTransition
1513 @fn CStringPool_LongCtor_Transition(CUnitTestContext& aUTContext,
1514 TTransitionValidator& aValidator)
1515 Intended Usage : Standard c'tor method.
1516 Error Condition : None.
1518 @param aUTContext The context this transition is operating in.
1519 @param aValidator Used for checking the pre & post conditions of the test object.
1521 @post CStringPool_LongCtor_Transition is fully constructed.
1523 CStringPool_LongCtor_Transition(CUnitTestContext& aUTContext,
1524 TTransitionValidator& aValidator);
1526 @fn TransitMethodL()
1527 Intended Usage : To execute the StringPool::LongCtor method for the test harness.
1528 Error Condition : Leaves with an error code.
1529 @leave KErrNoMemory, (@see StringPool::LongCtor)
1532 @pre CStringPool_LongCtor_Transition is fully constructed.
1533 @post No change in the CStringPool_LongCtor_Transition apart
1534 from iStringPool, which may have changed state.
1535 (@see StringPool::LongCtor post-condition) for iStringPool's new state.
1537 inline void TransitMethodL();
1541 Intended Usage : To provide access to the unit test context cast to the correct type.
1542 Error Condition : None.
1544 @return The unit test context cast to a CStringPool_UnitTestContext
1545 @pre iUTContext is a valid CStringPool_UnitTestContext.
1546 @post No change in the CStringPool_LongCtor_Transition
1548 inline CStringPool_UnitTestContext& Context() const;
1549 }; // CStringPool_LongCtor_Transition
1551 // ______________________________________________________________________________
1556 Comments : Transition test of the StringPool::StringF_Index_Table method.
1558 class CStringPool_StringF_Index_Table_Transition : public CTransitionType
1562 @fn CStringPool_StringF_Index_Table_Transition(CUnitTestContext& aUTContext,
1563 TTransitionValidator& aValidator)
1564 Intended Usage : Standard c'tor method.
1565 Error Condition : None.
1567 @param aUTContext The context this transition is operating in.
1568 @param aValidator Used for checking the pre & post conditions of the test object.
1570 @post CStringPool_StringF_Index_Table_Transition is fully constructed.
1572 CStringPool_StringF_Index_Table_Transition(CUnitTestContext& aUTContext,
1573 TTransitionValidator& aValidator);
1575 @fn TransitMethodL()
1576 Intended Usage : To execute the StringPool::StringF_Index_Table method for the test harness.
1577 Error Condition : Leaves with an error code.
1578 @leave KErrNoMemory, (@see StringPool::StringF_Index_Table)
1581 @pre CStringPool_StringF_Index_Table_Transition is fully constructed.
1582 @post No change in the CStringPool_StringF_Index_Table_Transition apart
1583 from iStringPool, which may have changed state.
1584 (@see StringPool::StringF_Index_Table post-condition) for iStringPool's new state.
1586 inline void TransitMethodL();
1590 Intended Usage : To provide access to the unit test context cast to the correct type.
1591 Error Condition : None.
1593 @return The unit test context cast to a CStringPool_UnitTestContext
1594 @pre iUTContext is a valid CStringPool_UnitTestContext.
1595 @post No change in the CStringPool_StringF_Index_Table_Transition
1597 inline CStringPool_UnitTestContext& Context() const;
1598 }; // CStringPool_StringF_Index_Table_Transition
1600 // ______________________________________________________________________________
1605 Comments : Transition test of the StringPool::shortCSCtor method.
1607 class CStringPool_ShortCSCtor_Transition : public CTransitionType
1611 @fn CStringPool_shortCSCtor_Transition(CUnitTestContext& aUTContext,
1612 TTransitionValidator& aValidator)
1613 Intended Usage : Standard c'tor method.
1614 Error Condition : None.
1616 @param aUTContext The context this transition is operating in.
1617 @param aValidator Used for checking the pre & post conditions of the test object.
1619 @post CStringPool_shortCSCtor_Transition is fully constructed.
1621 CStringPool_ShortCSCtor_Transition(CUnitTestContext& aUTContext,
1622 TTransitionValidator& aValidator);
1624 @fn TransitMethodL()
1625 Intended Usage : To execute the StringPool::shortCSCtor method for the test harness.
1626 Error Condition : Leaves with an error code.
1627 @leave KErrNoMemory, (@see StringPool::shortCSCtor)
1630 @pre CStringPool_shortCSCtor_Transition is fully constructed.
1631 @post No change in the CStringPool_shortCSCtor_Transition apart
1632 from iStringPool, which may have changed state.
1633 (@see StringPool::shortCSCtor post-condition) for iStringPool's new state.
1635 inline void TransitMethodL();
1639 Intended Usage : To provide access to the unit test context cast to the correct type.
1640 Error Condition : None.
1642 @return The unit test context cast to a CStringPool_UnitTestContext
1643 @pre iUTContext is a valid CStringPool_UnitTestContext.
1644 @post No change in the CStringPool_shortCSCtor_Transition
1646 inline CStringPool_UnitTestContext& Context() const;
1647 }; // CStringPool_ShortCSCtor_Transition
1650 // ______________________________________________________________________________
1655 Comments : Transition test of the StringPool::String_Index_Table method.
1657 class CStringPool_String_Index_Table_Transition : public CTransitionType
1661 @fn CStringPool_String_Index_Table_Transition(CUnitTestContext& aUTContext,
1662 TTransitionValidator& aValidator)
1663 Intended Usage : Standard c'tor method.
1664 Error Condition : None.
1666 @param aUTContext The context this transition is operating in.
1667 @param aValidator Used for checking the pre & post conditions of the test object.
1669 @post CStringPool_String_Index_Table_Transition is fully constructed.
1671 CStringPool_String_Index_Table_Transition(CUnitTestContext& aUTContext,
1672 TTransitionValidator& aValidator);
1674 @fn TransitMethodL()
1675 Intended Usage : To execute the StringPool::String_Index_Table method for the test harness.
1676 Error Condition : Leaves with an error code.
1677 @leave KErrNoMemory, (@see StringPool::String_Index_Table)
1680 @pre CStringPool_String_Index_Table_Transition is fully constructed.
1681 @post No change in the CStringPool_String_Index_Table_Transition apart
1682 from iStringPool, which may have changed state.
1683 (@see StringPool::String_Index_Table post-condition) for iStringPool's new state.
1685 inline void TransitMethodL();
1689 Intended Usage : To provide access to the unit test context cast to the correct type.
1690 Error Condition : None.
1692 @return The unit test context cast to a CStringPool_UnitTestContext
1693 @pre iUTContext is a valid CStringPool_UnitTestContext.
1694 @post No change in the CStringPool_String_Index_Table_Transition
1696 inline CStringPool_UnitTestContext& Context() const;
1697 }; // CStringPool_String_Index_Table_Transition
1699 // ______________________________________________________________________________
1704 Comments : Transition test of the CStringPool::IrrelevantCSCtor method.
1706 class CStringPool_IrrelevantCSCtor_Transition : public CTransitionType
1710 @fn CStringPool_IrrelevantCSCtor_Transition(CUnitTestContext& aUTContext,
1711 TTransitionValidator& aValidator)
1712 Intended Usage : Standard c'tor method.
1713 Error Condition : None.
1715 @param aUTContext The context this transition is operating in.
1716 @param aValidator Used for checking the pre & post conditions of the test object.
1718 @post CStringPool_IrrelevantCSCtor_Transition is fully constructed.
1720 CStringPool_IrrelevantCSCtor_Transition(CUnitTestContext& aUTContext,
1721 TTransitionValidator& aValidator);
1723 @fn TransitMethodL()
1724 Intended Usage : To execute the CStringPool::IrrelevantCSCtor method for the test harness.
1725 Error Condition : Leaves with an error code.
1726 @leave KErrNoMemory, (@see CStringPool::IrrelevantCSCtor)
1729 @pre CStringPool_IrrelevantCSCtor_Transition is fully constructed.
1730 @post No change in the CStringPool_IrrelevantCSCtor_Transition apart
1731 from iStringPool, which may have changed state.
1732 (@see CStringPool::IrrelevantCSCtor post-condition) for iStringPool's new state.
1734 inline void TransitMethodL();
1738 Intended Usage : To provide access to the unit test context cast to the correct type.
1739 Error Condition : None.
1741 @return The unit test context cast to a CStringPool_UnitTestContext
1742 @pre iUTContext is a valid CStringPool_UnitTestContext.
1743 @post No change in the CStringPool_IrrelevantCSCtor_Transition
1745 inline CStringPool_UnitTestContext& Context() const;
1746 }; // CStringPool_IrrelevantCSCtor_Transition
1748 // ______________________________________________________________________________
1753 Comments : Transition test of the CStringPool::LargeCSCtor method.
1755 class CStringPool_LargeCSCtor_Transition : public CTransitionType
1759 @fn CStringPool_LargeCSCtor_Transition(CUnitTestContext& aUTContext,
1760 TTransitionValidator& aValidator)
1761 Intended Usage : Standard c'tor method.
1762 Error Condition : None.
1764 @param aUTContext The context this transition is operating in.
1765 @param aValidator Used for checking the pre & post conditions of the test object.
1767 @post CStringPool_LargeCSCtor_Transition is fully constructed.
1769 CStringPool_LargeCSCtor_Transition(CUnitTestContext& aUTContext,
1770 TTransitionValidator& aValidator);
1772 @fn TransitMethodL()
1773 Intended Usage : To execute the CStringPool::LargeCSCtor method for the test harness.
1774 Error Condition : Leaves with an error code.
1775 @leave KErrNoMemory, (@see CStringPool::LargeCSCtor)
1778 @pre CStringPool_LargeCSCtor_Transition is fully constructed.
1779 @post No change in the CStringPool_LargeCSCtor_Transition apart
1780 from iStringPool, which may have changed state.
1781 (@see CStringPool::LargeCSCtor post-condition) for iStringPool's new state.
1783 inline void TransitMethodL();
1787 Intended Usage : To provide access to the unit test context cast to the correct type.
1788 Error Condition : None.
1790 @return The unit test context cast to a CStringPool_UnitTestContext
1791 @pre iUTContext is a valid CStringPool_UnitTestContext.
1792 @post No change in the CStringPool_LargeCSCtor_Transition
1794 inline CStringPool_UnitTestContext& Context() const;
1795 }; // CStringPool_LargeCSCtor_Transition
1797 // ______________________________________________________________________________
1802 Comments : Transition test of the CStringPool::ShortCtor_CB method.
1804 class CStringPool_Short_CB_Transition : public CTransitionType
1809 @fn CStringPool_Short_CB_Transition(CUnitTestContext& aUTContext,
1810 TTransitionValidator& aValidator)
1811 Intended Usage : Standard c'tor method.
1812 Error Condition : None.
1814 @param aUTContext The context this transition is operating in.
1815 @param aValidator Used for checking the pre & post conditions of the test object.
1817 @post CStringPool_Short_CB_Transition is fully constructed.
1819 CStringPool_Short_CB_Transition(CUnitTestContext& aUTContext,
1820 TTransitionValidator& aValidator);
1822 @fn TransitMethodL()
1823 Intended Usage : To execute the CStringPool::ShortCtor_CB method for the test harness.
1824 Error Condition : Leaves with an error code.
1825 @leave KErrNoMemory, (@see CStringPool::ShortCtor_CB)
1828 @pre CStringPool_Short_CB_Transition is fully constructed.
1829 @post No change in the CStringPool_ShortCtor_CB_Transition apart
1830 from iStringPool, which may have changed state.
1831 (@see CStringPool::ShortCtor_CB post-condition) for iStringPool's new state.
1833 inline void TransitMethodL();
1837 Intended Usage : To provide access to the unit test context cast to the correct type.
1838 Error Condition : None.
1840 @return The unit test context cast to a CStringPool_UnitTestContext
1841 @pre iUTContext is a valid CStringPool_UnitTestContext.
1842 @post No change in the CStringPool_Short_CB_Transition
1844 inline CStringPool_UnitTestContext& Context() const;
1845 }; // CStringPool_Short_CB_Transition
1847 // ______________________________________________________________________________
1852 Comments : Transition test of the StringPool::MultipleTableCICtor method.
1854 class CStringPool_MultipleTableCICtor_Transition : public CTransitionType
1858 @fn CStringPool_MultipleTableCICtor_Transition(CUnitTestContext& aUTContext,
1859 TTransitionValidator& aValidator)
1860 Intended Usage : Standard c'tor method.
1861 Error Condition : None.
1863 @param aUTContext The context this transition is operating in.
1864 @param aValidator Used for checking the pre & post conditions of the test object.
1866 @post CStringPool_MultipleTableCICtor_Transition is fully constructed.
1868 CStringPool_MultipleTableCICtor_Transition(CUnitTestContext& aUTContext,
1869 TTransitionValidator& aValidator);
1871 @fn TransitMethodL()
1872 Intended Usage : To execute the StringPool::MultipleTableCICtor method for the test harness.
1873 Error Condition : Leaves with an error code.
1874 @leave KErrNoMemory, (@see StringPool::MultipleTableCICtor)
1877 @pre CStringPool_MultipleTableCICtor_Transition is fully constructed.
1878 @post No change in the CStringPool_MultipleTableCICtor_Transition apart
1879 from iStringPool, which may have changed state.
1880 (@see StringPool::MultipleTableCICtor post-condition) for iStringPool's new state.
1882 inline void TransitMethodL();
1886 Intended Usage : To provide access to the unit test context cast to the correct type.
1887 Error Condition : None.
1889 @return The unit test context cast to a CStringPool_UnitTestContext
1890 @pre iUTContext is a valid CStringPool_UnitTestContext.
1891 @post No change in the CStringPool_MultipleTableCICtor_Transition
1893 inline CStringPool_UnitTestContext& Context() const;
1894 }; // CStringPool_MultipleTableCICtor_Transition
1896 // ______________________________________________________________________________
1901 Comments : Transition test of the StringPool::MutlipleCICeqC method.
1903 class CStringPool_MutlipleCICeqC_Transition : public CTransitionType
1907 @fn CStringPool_MutlipleCICeqC_Transition(CUnitTestContext& aUTContext,
1908 TTransitionValidator& aValidator)
1909 Intended Usage : Standard c'tor method.
1910 Error Condition : None.
1912 @param aUTContext The context this transition is operating in.
1913 @param aValidator Used for checking the pre & post conditions of the test object.
1915 @post CStringPool_MutlipleCICeqC_Transition is fully constructed.
1917 CStringPool_MutlipleCICeqC_Transition(CUnitTestContext& aUTContext,
1918 TTransitionValidator& aValidator);
1920 @fn TransitMethodL()
1921 Intended Usage : To execute the StringPool::MutlipleCICeqC method for the test harness.
1922 Error Condition : Leaves with an error code.
1923 @leave KErrNoMemory, (@see StringPool::MutlipleCICeqC)
1926 @pre CStringPool_MutlipleCICeqC_Transition is fully constructed.
1927 @post No change in the CStringPool_MutlipleCICeqC_Transition apart
1928 from iStringPool, which may have changed state.
1929 (@see StringPool::MutlipleCICeqC post-condition) for iStringPool's new state.
1931 inline void TransitMethodL();
1935 Intended Usage : To provide access to the unit test context cast to the correct type.
1936 Error Condition : None.
1938 @return The unit test context cast to a CStringPool_UnitTestContext
1939 @pre iUTContext is a valid CStringPool_UnitTestContext.
1940 @post No change in the CStringPool_MutlipleCICeqC_Transition
1942 inline CStringPool_UnitTestContext& Context() const;
1943 }; // CStringPool_MutlipleCICeqC_Transition
1945 // ______________________________________________________________________________
1950 Comments : Transition test of the StringPool::MultipleCIStringToIndex method.
1952 class CStringPool_MultipleCIStringToIndex_Transition : public CTransitionType
1956 @fn CStringPool_MultipleCIStringToIndex_Transition(CUnitTestContext& aUTContext,
1957 TTransitionValidator& aValidator)
1958 Intended Usage : Standard c'tor method.
1959 Error Condition : None.
1961 @param aUTContext The context this transition is operating in.
1962 @param aValidator Used for checking the pre & post conditions of the test object.
1964 @post CStringPool_MultipleCIStringToIndex_Transition is fully constructed.
1966 CStringPool_MultipleCIStringToIndex_Transition(CUnitTestContext& aUTContext,
1967 TTransitionValidator& aValidator);
1969 @fn TransitMethodL()
1970 Intended Usage : To execute the StringPool::MultipleCIStringToIndex method for the test harness.
1971 Error Condition : Leaves with an error code.
1972 @leave KErrNoMemory, (@see StringPool::MultipleCIStringToIndex)
1975 @pre CStringPool_MultipleCIStringToIndex_Transition is fully constructed.
1976 @post No change in the CStringPool_MultipleCIStringToIndex_Transition apart
1977 from iStringPool, which may have changed state.
1978 (@see StringPool::MultipleCIStringToIndex post-condition) for iStringPool's new state.
1980 inline void TransitMethodL();
1984 Intended Usage : To provide access to the unit test context cast to the correct type.
1985 Error Condition : None.
1987 @return The unit test context cast to a CStringPool_UnitTestContext
1988 @pre iUTContext is a valid CStringPool_UnitTestContext.
1989 @post No change in the CStringPool_MultipleCIStringToIndex_Transition
1991 inline CStringPool_UnitTestContext& Context() const;
1992 }; // CStringPool_MultipleCIStringToIndex_Transition
1994 // ______________________________________________________________________________
1999 Comments : Transition test of the StringPool::MultipleCIDynamicString method.
2001 class CStringPool_MultipleCIDynamicString_Transition : public CTransitionType
2005 @fn CStringPool_MultipleCIDynamicString_Transition(CUnitTestContext& aUTContext,
2006 TTransitionValidator& aValidator)
2007 Intended Usage : Standard c'tor method.
2008 Error Condition : None.
2010 @param aUTContext The context this transition is operating in.
2011 @param aValidator Used for checking the pre & post conditions of the test object.
2013 @post CStringPool_MultipleCIDynamicString_Transition is fully constructed.
2015 CStringPool_MultipleCIDynamicString_Transition(CUnitTestContext& aUTContext,
2016 TTransitionValidator& aValidator);
2018 @fn TransitMethodL()
2019 Intended Usage : To execute the StringPool::MultipleCIDynamicString method for the test harness.
2020 Error Condition : Leaves with an error code.
2021 @leave KErrNoMemory, (@see StringPool::MultipleCIDynamicString)
2024 @pre CStringPool_MultipleCIDynamicString_Transition is fully constructed.
2025 @post No change in the CStringPool_MultipleCIDynamicString_Transition apart
2026 from iStringPool, which may have changed state.
2027 (@see StringPool::MultipleCIDynamicString post-condition) for iStringPool's new state.
2029 inline void TransitMethodL();
2033 Intended Usage : To provide access to the unit test context cast to the correct type.
2034 Error Condition : None.
2036 @return The unit test context cast to a CStringPool_UnitTestContext
2037 @pre iUTContext is a valid CStringPool_UnitTestContext.
2038 @post No change in the CStringPool_MultipleCIDynamicString_Transition
2040 inline CStringPool_UnitTestContext& Context() const;
2041 }; // CStringPool_MultipleCIDynamicString_Transition
2043 // ______________________________________________________________________________
2048 Comments : Transition test of the StringPool::MultipleCIIndexToStringDynamic method.
2050 class CStringPool_MultipleCIIndexToStringDynamic_Transition : public CTransitionType
2054 @fn CStringPool_MultipleCIIndexToStringDynamic_Transition(CUnitTestContext& aUTContext,
2055 TTransitionValidator& aValidator)
2056 Intended Usage : Standard c'tor method.
2057 Error Condition : None.
2059 @param aUTContext The context this transition is operating in.
2060 @param aValidator Used for checking the pre & post conditions of the test object.
2062 @post CStringPool_MultipleCIIndexToStringDynamic_Transition is fully constructed.
2064 CStringPool_MultipleCIIndexToStringDynamic_Transition(CUnitTestContext& aUTContext,
2065 TTransitionValidator& aValidator);
2067 @fn TransitMethodL()
2068 Intended Usage : To execute the StringPool::MultipleCIIndexToStringDynamic method for the test harness.
2069 Error Condition : Leaves with an error code.
2070 @leave KErrNoMemory, (@see StringPool::MultipleCIIndexToStringDynamic)
2073 @pre CStringPool_MultipleCIIndexToStringDynamic_Transition is fully constructed.
2074 @post No change in the CStringPool_MultipleCIIndexToStringDynamic_Transition apart
2075 from iStringPool, which may have changed state.
2076 (@see StringPool::MultipleCIIndexToStringDynamic post-condition) for iStringPool's new state.
2078 inline void TransitMethodL();
2082 Intended Usage : To provide access to the unit test context cast to the correct type.
2083 Error Condition : None.
2085 @return The unit test context cast to a CStringPool_UnitTestContext
2086 @pre iUTContext is a valid CStringPool_UnitTestContext.
2087 @post No change in the CStringPool_MultipleCIIndexToStringDynamic_Transition
2089 inline CStringPool_UnitTestContext& Context() const;
2090 }; // CStringPool_MultipleCIIndexToStringDynamic_Transition
2092 // ______________________________________________________________________________
2097 Comments : Transition test of the StringPool::MutlipleCSCeqC method.
2099 class CStringPool_MutlipleCSCeqC_Transition : public CTransitionType
2103 @fn CStringPool_MutlipleCSCeqC_Transition(CUnitTestContext& aUTContext,
2104 TTransitionValidator& aValidator)
2105 Intended Usage : Standard c'tor method.
2106 Error Condition : None.
2108 @param aUTContext The context this transition is operating in.
2109 @param aValidator Used for checking the pre & post conditions of the test object.
2111 @post CStringPool_MutlipleCSCeqC_Transition is fully constructed.
2113 CStringPool_MutlipleCSCeqC_Transition(CUnitTestContext& aUTContext,
2114 TTransitionValidator& aValidator);
2116 @fn TransitMethodL()
2117 Intended Usage : To execute the StringPool::MutlipleCSCeqC method for the test harness.
2118 Error Condition : Leaves with an error code.
2119 @leave KErrNoMemory, (@see StringPool::MutlipleCSCeqC)
2122 @pre CStringPool_MutlipleCSCeqC_Transition is fully constructed.
2123 @post No change in the CStringPool_MutlipleCSCeqC_Transition apart
2124 from iStringPool, which may have changed state.
2125 (@see StringPool::MutlipleCSCeqC post-condition) for iStringPool's new state.
2127 inline void TransitMethodL();
2131 Intended Usage : To provide access to the unit test context cast to the correct type.
2132 Error Condition : None.
2134 @return The unit test context cast to a CStringPool_UnitTestContext
2135 @pre iUTContext is a valid CStringPool_UnitTestContext.
2136 @post No change in the CStringPool_MutlipleCSCeqC_Transition
2138 inline CStringPool_UnitTestContext& Context() const;
2139 }; // CStringPool_MutlipleCSCeqC_Transition
2141 // ______________________________________________________________________________
2146 Comments : Transition test of the StringPool::MultipleCSStringToIndex method.
2148 class CStringPool_MultipleCSStringToIndex_Transition : public CTransitionType
2152 @fn CStringPool_MultipleCSStringToIndex_Transition(CUnitTestContext& aUTContext,
2153 TTransitionValidator& aValidator)
2154 Intended Usage : Standard c'tor method.
2155 Error Condition : None.
2157 @param aUTContext The context this transition is operating in.
2158 @param aValidator Used for checking the pre & post conditions of the test object.
2160 @post CStringPool_MultipleCSStringToIndex_Transition is fully constructed.
2162 CStringPool_MultipleCSStringToIndex_Transition(CUnitTestContext& aUTContext,
2163 TTransitionValidator& aValidator);
2165 @fn TransitMethodL()
2166 Intended Usage : To execute the StringPool::MultipleCSStringToIndex method for the test harness.
2167 Error Condition : Leaves with an error code.
2168 @leave KErrNoMemory, (@see StringPool::MultipleCSStringToIndex)
2171 @pre CStringPool_MultipleCSStringToIndex_Transition is fully constructed.
2172 @post No change in the CStringPool_MultipleCSStringToIndex_Transition apart
2173 from iStringPool, which may have changed state.
2174 (@see StringPool::MultipleCSStringToIndex post-condition) for iStringPool's new state.
2176 inline void TransitMethodL();
2180 Intended Usage : To provide access to the unit test context cast to the correct type.
2181 Error Condition : None.
2183 @return The unit test context cast to a CStringPool_UnitTestContext
2184 @pre iUTContext is a valid CStringPool_UnitTestContext.
2185 @post No change in the CStringPool_MultipleCSStringToIndex_Transition
2187 inline CStringPool_UnitTestContext& Context() const;
2188 }; // CStringPool_MultipleCSStringToIndex_Transition
2190 // ______________________________________________________________________________
2195 Comments : Transition test of the StringPool::MultipleCSDynamicString method.
2197 class CStringPool_MultipleCSDynamicString_Transition : public CTransitionType
2201 @fn CStringPool_MultipleCSDynamicString_Transition(CUnitTestContext& aUTContext,
2202 TTransitionValidator& aValidator)
2203 Intended Usage : Standard c'tor method.
2204 Error Condition : None.
2206 @param aUTContext The context this transition is operating in.
2207 @param aValidator Used for checking the pre & post conditions of the test object.
2209 @post CStringPool_MultipleCSDynamicString_Transition is fully constructed.
2211 CStringPool_MultipleCSDynamicString_Transition(CUnitTestContext& aUTContext,
2212 TTransitionValidator& aValidator);
2214 @fn TransitMethodL()
2215 Intended Usage : To execute the StringPool::MultipleCSDynamicString method for the test harness.
2216 Error Condition : Leaves with an error code.
2217 @leave KErrNoMemory, (@see StringPool::MultipleCSDynamicString)
2220 @pre CStringPool_MultipleCSDynamicString_Transition is fully constructed.
2221 @post No change in the CStringPool_MultipleCSDynamicString_Transition apart
2222 from iStringPool, which may have changed state.
2223 (@see StringPool::MultipleCSDynamicString post-condition) for iStringPool's new state.
2225 inline void TransitMethodL();
2229 Intended Usage : To provide access to the unit test context cast to the correct type.
2230 Error Condition : None.
2232 @return The unit test context cast to a CStringPool_UnitTestContext
2233 @pre iUTContext is a valid CStringPool_UnitTestContext.
2234 @post No change in the CStringPool_MultipleCSDynamicString_Transition
2236 inline CStringPool_UnitTestContext& Context() const;
2237 }; // CStringPool_MultipleCSDynamicString_Transition
2239 // ______________________________________________________________________________
2244 Comments : Transition test of the StringPool::MultipleCSIndexToStringDynamic method.
2246 class CStringPool_MultipleCSIndexToStringDynamic_Transition : public CTransitionType
2250 @fn CStringPool_MultipleCSIndexToStringDynamic_Transition(CUnitTestContext& aUTContext,
2251 TTransitionValidator& aValidator)
2252 Intended Usage : Standard c'tor method.
2253 Error Condition : None.
2255 @param aUTContext The context this transition is operating in.
2256 @param aValidator Used for checking the pre & post conditions of the test object.
2258 @post CStringPool_MultipleCSIndexToStringDynamic_Transition is fully constructed.
2260 CStringPool_MultipleCSIndexToStringDynamic_Transition(CUnitTestContext& aUTContext,
2261 TTransitionValidator& aValidator);
2263 @fn TransitMethodL()
2264 Intended Usage : To execute the StringPool::MultipleCSIndexToStringDynamic method for the test harness.
2265 Error Condition : Leaves with an error code.
2266 @leave KErrNoMemory, (@see StringPool::MultipleCSIndexToStringDynamic)
2269 @pre CStringPool_MultipleCSIndexToStringDynamic_Transition is fully constructed.
2270 @post No change in the CStringPool_MultipleCSIndexToStringDynamic_Transition apart
2271 from iStringPool, which may have changed state.
2272 (@see StringPool::MultipleCSIndexToStringDynamic post-condition) for iStringPool's new state.
2274 inline void TransitMethodL();
2278 Intended Usage : To provide access to the unit test context cast to the correct type.
2279 Error Condition : None.
2281 @return The unit test context cast to a CStringPool_UnitTestContext
2282 @pre iUTContext is a valid CStringPool_UnitTestContext.
2283 @post No change in the CStringPool_MultipleCSIndexToStringDynamic_Transition
2285 inline CStringPool_UnitTestContext& Context() const;
2286 }; // CStringPool_MultipleCSIndexToStringDynamic_Transition
2288 // ______________________________________________________________________________
2293 Comments : Transition test of the StringPool::MultipleTableDtor method.
2295 class CStringPool_MultipleTableDtor_Transition : public CTransitionType
2299 @fn CStringPool_MultipleTableDtor_Transition(CUnitTestContext& aUTContext,
2300 TTransitionValidator& aValidator)
2301 Intended Usage : Standard c'tor method.
2302 Error Condition : None.
2304 @param aUTContext The context this transition is operating in.
2305 @param aValidator Used for checking the pre & post conditions of the test object.
2307 @post CStringPool_MultipleTableDtor_Transition is fully constructed.
2309 CStringPool_MultipleTableDtor_Transition(CUnitTestContext& aUTContext,
2310 TTransitionValidator& aValidator);
2312 @fn TransitMethodL()
2313 Intended Usage : To execute the StringPool::MultipleTableDtor method for the test harness.
2314 Error Condition : Leaves with an error code.
2315 @leave KErrNoMemory, (@see StringPool::MultipleTableDtor)
2318 @pre CStringPool_MultipleTableDtor_Transition is fully constructed.
2319 @post No change in the CStringPool_MultipleTableDtor_Transition apart
2320 from iStringPool, which may have changed state.
2321 (@see StringPool::MultipleTableDtor post-condition) for iStringPool's new state.
2323 inline void TransitMethodL();
2327 Intended Usage : To provide access to the unit test context cast to the correct type.
2328 Error Condition : None.
2330 @return The unit test context cast to a CStringPool_UnitTestContext
2331 @pre iUTContext is a valid CStringPool_UnitTestContext.
2332 @post No change in the CStringPool_MultipleTableDtor_Transition
2334 inline CStringPool_UnitTestContext& Context() const;
2335 }; // CStringPool_MultipleTableDtor_Transition
2337 // ______________________________________________________________________________
2342 Comments : Transition test of the CStringPool::BEU55DJG3 method.
2344 class CStringPool_BEU55DJG3_Transition : public CTransitionType
2348 @fn CStringPool_BEU55DJG3_Transition(CUnitTestContext& aUTContext,
2349 TTransitionValidator& aValidator)
2350 Intended Usage : Standard c'tor method.
2351 Error Condition : None.
2353 @param aUTContext The context this transition is operating in.
2354 @param aValidator Used for checking the pre & post conditions of the test object.
2356 @post CStringPool_BEU55DJG3_Transition is fully constructed.
2358 CStringPool_BEU55DJG3_Transition(CUnitTestContext& aUTContext,
2359 TTransitionValidator& aValidator);
2361 @fn TransitMethodL()
2362 Intended Usage : To execute the CStringPool::BEU55DJG3 method for the test harness.
2363 Error Condition : Leaves with an error code.
2364 @leave KErrNoMemory, (@see CStringPool::BEU55DJG3)
2367 @pre CStringPool_BEU55DJG3_Transition is fully constructed.
2368 @post No change in the CStringPool_BEU55DJG3_Transition apart
2369 from iStringPool, which may have changed state.
2370 (@see CStringPool::BEU55DJG3 post-condition) for iStringPool's new state.
2372 inline void TransitMethodL();
2376 Intended Usage : To provide access to the unit test context cast to the correct type.
2377 Error Condition : None.
2379 @return The unit test context cast to a CStringPool_UnitTestContext
2380 @pre iUTContext is a valid CStringPool_UnitTestContext.
2381 @post No change in the CStringPool_BEU55DJG3_Transition
2383 inline CStringPool_UnitTestContext& Context() const;
2384 }; // CStringPool_BEU55DJG3_Transition
2386 // ______________________________________________________________________________
2391 Comments : Transition test of the CStringPool::KRN56NDEZ method.
2393 class CStringPool_KRN56NDEZ_Transition : public CTransitionType
2397 @fn CStringPool_KRN56NDEZ_Transition(CUnitTestContext& aUTContext,
2398 TTransitionValidator& aValidator)
2399 Intended Usage : Standard c'tor method.
2400 Error Condition : None.
2402 @param aUTContext The context this transition is operating in.
2403 @param aValidator Used for checking the pre & post conditions of the test object.
2405 @post CStringPool_KRN56NDEZ_Transition is fully constructed.
2407 CStringPool_KRN56NDEZ_Transition(CUnitTestContext& aUTContext,
2408 TTransitionValidator& aValidator);
2410 @fn TransitMethodL()
2411 Intended Usage : To execute the CStringPool::KRN56NDEZ method for the test harness.
2412 Error Condition : Leaves with an error code.
2413 @leave KErrNoMemory, (@see CStringPool::KRN56NDEZ)
2416 @pre CStringPool_KRN56NDEZ_Transition is fully constructed.
2417 @post No change in the CStringPool_KRN56NDEZ_Transition apart
2418 from iStringPool, which may have changed state.
2419 (@see CStringPool::KRN56NDEZ post-condition) for iStringPool's new state.
2421 inline void TransitMethodL();
2425 Intended Usage : To provide access to the unit test context cast to the correct type.
2426 Error Condition : None.
2428 @return The unit test context cast to a CStringPool_UnitTestContext
2429 @pre iUTContext is a valid CStringPool_UnitTestContext.
2430 @post No change in the CStringPool_KRN56NDEZ_Transition
2432 inline CStringPool_UnitTestContext& Context() const;
2433 }; // CStringPool_KRN56NDEZ_Transition
2436 // ______________________________________________________________________________
2441 Comments : Transition test of the CStringPool::APY57TEH3 method.
2443 class CStringPool_APY57TEH3_Transition : public CTransitionType
2447 @fn CStringPool_APY57TEH3_Transition(CUnitTestContext& aUTContext,
2448 TTransitionValidator& aValidator)
2449 Intended Usage : Standard c'tor method.
2450 Error Condition : None.
2452 @param aUTContext The context this transition is operating in.
2453 @param aValidator Used for checking the pre & post conditions of the test object.
2455 @post CStringPool_APY57TEH3_Transition is fully constructed.
2457 CStringPool_APY57TEH3_Transition(CUnitTestContext& aUTContext,
2458 TTransitionValidator& aValidator);
2460 @fn TransitMethodL()
2461 Intended Usage : To execute the CStringPool::APY57TEH3 method for the test harness.
2462 Error Condition : Leaves with an error code.
2463 @leave KErrNoMemory, (@see CStringPool::APY57TEH3)
2466 @pre CStringPool_APY57TEH3_Transition is fully constructed.
2467 @post No change in the CStringPool_APY57TEH3_Transition apart
2468 from iStringPool, which may have changed state.
2469 (@see CStringPool::APY57TEH3 post-condition) for iStringPool's new state.
2471 inline void TransitMethodL();
2475 Intended Usage : To provide access to the unit test context cast to the correct type.
2476 Error Condition : None.
2478 @return The unit test context cast to a CStringPool_UnitTestContext
2479 @pre iUTContext is a valid CStringPool_UnitTestContext.
2480 @post No change in the CStringPool_APY57TEH3_Transition
2482 inline CStringPool_UnitTestContext& Context() const;
2483 }; // CStringPool_APY57TEH3_Transition
2486 // ______________________________________________________________________________
2491 Comments : Transition test of the CStringPool::HAD57SK27 method.
2493 class CStringPool_HAD57SK27_Transition : public CTransitionType
2497 @fn CStringPool_HAD57SK27_Transition(CUnitTestContext& aUTContext,
2498 TTransitionValidator& aValidator)
2499 Intended Usage : Standard c'tor method.
2500 Error Condition : None.
2502 @param aUTContext The context this transition is operating in.
2503 @param aValidator Used for checking the pre & post conditions of the test object.
2505 @post CStringPool_HAD57SK27_Transition is fully constructed.
2507 CStringPool_HAD57SK27_Transition(CUnitTestContext& aUTContext,
2508 TTransitionValidator& aValidator);
2510 @fn TransitMethodL()
2511 Intended Usage : To execute the CStringPool::HAD57SK27 method for the test harness.
2512 Error Condition : Leaves with an error code.
2513 @leave KErrNoMemory, (@see CStringPool::HAD57SK27)
2516 @pre CStringPool_HAD57SK27_Transition is fully constructed.
2517 @post No change in the CStringPool_HAD57SK27_Transition apart
2518 from iStringPool, which may have changed state.
2519 (@see CStringPool::HAD57SK27 post-condition) for iStringPool's new state.
2521 inline void TransitMethodL();
2525 Intended Usage : To provide access to the unit test context cast to the correct type.
2526 Error Condition : None.
2528 @return The unit test context cast to a CStringPool_UnitTestContext
2529 @pre iUTContext is a valid CStringPool_UnitTestContext.
2530 @post No change in the CStringPool_HAD57SK27_Transition
2532 inline CStringPool_UnitTestContext& Context() const;
2533 }; // CStringPool_HAD57SK27_Transition
2537 #include "StringPoolTransitions.inl"
2539 #include "StringPoolUnitTestContext.inl"
2541 #endif // __STRINGPOOLTRANSITIONS_H__