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 // The unit test class definitions for the RStringPool class.
18 #ifndef __STRINGPOOLUNITTEST_H__
19 #define __STRINGPOOLUNITTEST_H__
21 #include <ecom/test_bed/testbeddefinitions.h>
22 #include "StringPoolStateAccessor.h"
23 #include "StringPoolTransitionValidation.h"
24 #include "StringPoolTransitions.h"
25 #include <stringpool.h>
28 // ______________________________________________________________________________
32 Comments : Unit Test for CaseInsensitive on StringPool, the class under test.
34 class CStringPool_CaseInsensitive_UnitTest : public CUnitTest
38 @fn NewL(CDataLogger& aDataLogger,
39 MUnitTestObserver& aObserver)
40 Intended Usage : Standard two-phase construction which leaves nothing on the
42 Error Condition : Leaves with the error code.
45 @param aDataLogger The output logging object.
46 @param aObserver The observer of this UnitTest.
47 @return CStringPool_CaseInsensitive_UnitTest* The constructed object.
49 @post CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
51 static CStringPool_CaseInsensitive_UnitTest* NewL(CDataLogger& aDataLogger,
52 MUnitTestObserver& aObserver);
55 @fn RunError(TInt aError)
56 Intended Usage : Intercept the panic caused by a RunL leave,
57 to restore the CStringPool_CaseInsensitive_UnitTest
58 object to a sensible state.
59 (called by the Active Scheduler immediately before the Panic).
60 Error Condition : @see CUnitTest::RunError().
62 @return TInt KErrNone if cleanup successful, otherwise
63 @see CUnitTest::RunError()
64 @pre CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
65 @post The object has been restored to a sensible state.
67 inline TInt RunError(TInt aError);
70 @fn ~CStringPool_CaseInsensitive_UnitTest()
71 Intended Usage : Standard Destructor.
72 Error Condition : None.
74 @pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
75 @post CStringPool_CaseInsensitive_UnitTest is fully destroyed.
77 ~CStringPool_CaseInsensitive_UnitTest();
81 @fn CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
82 MUnitTestObserver& aObserver)
83 Intended Usage : Default constructor.
84 Error Condition : None.
86 @param aDataLogger The output logging object.
87 @param aObserver The observer of this UnitTest.
88 @param aStateAccessor WhiteBox state access to the StringPool class.
90 @post CStringPool_CaseInsensitive_UnitTest is fully constructed.
92 inline CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
93 MUnitTestObserver& aObserver);
97 Intended Usage : Second phase of safe two phase construction,
98 to complete the object initialisation.
99 Error Condition : Leaves with an error code.
100 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
103 @pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
104 @post CStringPool_CaseInsensitive_UnitTest is fully initialised.
109 The context of the Unit Test.
110 i.e The StringPool class tested by this UnitTest's transitions.
112 CStringPool_UnitTestContext* iUTContext;
113 TStringPool_StateAccessor* iStateAccessor;
114 TStringPool_True_TransitionValidator* iTrueValidator;
115 TStringPool_False_TransitionValidator* iFalseValidator;
116 }; // CStringPool_CaseInsensitive_UnitTest
118 // ______________________________________________________________________________
122 Comments : Unit Test for SmallTable on StringPool, the class under test.
124 class CStringPool_ShortTable_UnitTest : public CUnitTest
128 @fn NewL(CDataLogger& aDataLogger,
129 MUnitTestObserver& aObserver)
130 Intended Usage : Standard two-phase construction which leaves nothing on the
132 Error Condition : Leaves with the error code.
135 @param aDataLogger The output logging object.
136 @param aObserver The observer of this UnitTest.
137 @return CStringPool_ShortTable_UnitTest* The constructed object.
139 @post CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
141 static CStringPool_ShortTable_UnitTest* NewL(CDataLogger& aDataLogger,
142 MUnitTestObserver& aObserver);
145 @fn RunError(TInt aError)
146 Intended Usage : Intercept the panic caused by a RunL leave,
147 to restore the CStringPool_ShortTable_UnitTest
148 object to a sensible state.
149 (called by the Active Scheduler immediately before the Panic).
150 Error Condition : @see CUnitTest::RunError().
152 @return TInt KErrNone if cleanup successful, otherwise
153 @see CUnitTest::RunError()
154 @pre CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
155 @post The object has been restored to a sensible state.
157 inline TInt RunError(TInt aError);
160 @fn ~CStringPool_ShortTable_UnitTest()
161 Intended Usage : Standard Destructor.
162 Error Condition : None.
164 @pre CStringPool_ShortTable_UnitTest is fully constructed.
165 @post CStringPool_ShortTable_UnitTest is fully destroyed.
167 ~CStringPool_ShortTable_UnitTest();
171 @fn CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
172 MUnitTestObserver& aObserver)
173 Intended Usage : Default constructor.
174 Error Condition : None.
176 @param aDataLogger The output logging object.
177 @param aObserver The observer of this UnitTest.
178 @param aStateAccessor WhiteBox state access to the StringPool class.
180 @post CStringPool_ShortTable_UnitTest is fully constructed.
182 inline CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
183 MUnitTestObserver& aObserver);
186 @fn void ConstructL()
187 Intended Usage : Second phase of safe two phase construction,
188 to complete the object initialisation.
189 Error Condition : Leaves with an error code.
190 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
193 @pre CStringPool_ShortTable_UnitTest is fully constructed.
194 @post CStringPool_ShortTable_UnitTest is fully initialised.
199 The context of the Unit Test.
200 i.e The StringPool class tested by this UnitTest's transitions.
202 CStringPool_UnitTestContext* iUTContext;
203 TStringPool_StateAccessor* iStateAccessor;
204 TStringPool_True_TransitionValidator* iTrueValidator;
205 TStringPool_False_TransitionValidator* iFalseValidator;
206 }; // CStringPool_ShortTable_UnitTest
211 // ______________________________________________________________________________
215 Comments : Unit Test for IrrelevantTable on StringPool, the class under test.
217 class CStringPool_IrrelevantTable_UnitTest : public CUnitTest
221 @fn NewL(CDataLogger& aDataLogger,
222 MUnitTestObserver& aObserver)
223 Intended Usage : Standard two-phase construction which leaves nothing on the
225 Error Condition : Leaves with the error code.
228 @param aDataLogger The output logging object.
229 @param aObserver The observer of this UnitTest.
230 @return CStringPool_IrrelevantTable_UnitTest* The constructed object.
232 @post CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
234 static CStringPool_IrrelevantTable_UnitTest* NewL(CDataLogger& aDataLogger,
235 MUnitTestObserver& aObserver);
238 @fn RunError(TInt aError)
239 Intended Usage : Intercept the panic caused by a RunL leave,
240 to restore the CStringPool_IrrelevantTable_UnitTest
241 object to a sensible state.
242 (called by the Active Scheduler immediately before the Panic).
243 Error Condition : @see CUnitTest::RunError().
245 @return TInt KErrNone if cleanup successful, otherwise
246 @see CUnitTest::RunError()
247 @pre CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
248 @post The object has been restored to a sensible state.
250 inline TInt RunError(TInt aError);
253 @fn ~CStringPool_IrrelevantTable_UnitTest()
254 Intended Usage : Standard Destructor.
255 Error Condition : None.
257 @pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
258 @post CStringPool_IrrelevantTable_UnitTest is fully destroyed.
260 ~CStringPool_IrrelevantTable_UnitTest();
264 @fn CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
265 MUnitTestObserver& aObserver)
266 Intended Usage : Default constructor.
267 Error Condition : None.
269 @param aDataLogger The output logging object.
270 @param aObserver The observer of this UnitTest.
271 @param aStateAccessor WhiteBox state access to the StringPool class.
273 @post CStringPool_IrrelevantTable_UnitTest is fully constructed.
275 inline CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
276 MUnitTestObserver& aObserver);
279 @fn void ConstructL()
280 Intended Usage : Second phase of safe two phase construction,
281 to complete the object initialisation.
282 Error Condition : Leaves with an error code.
283 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
286 @pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
287 @post CStringPool_IrrelevantTable_UnitTest is fully initialised.
292 The context of the Unit Test.
293 i.e The StringPool class tested by this UnitTest's transitions.
295 CStringPool_UnitTestContext* iUTContext;
296 TStringPool_StateAccessor* iStateAccessor;
297 TStringPool_True_TransitionValidator* iTrueValidator;
298 TStringPool_False_TransitionValidator* iFalseValidator;
299 }; // CStringPool_IrrelevantTable_UnitTest
302 // ______________________________________________________________________________
306 Comments : Unit Test for LargeTable on StringPool, the class under test.
308 class CStringPool_LongTable_UnitTest : public CUnitTest
312 @fn NewL(CDataLogger& aDataLogger,
313 MUnitTestObserver& aObserver)
314 Intended Usage : Standard two-phase construction which leaves nothing on the
316 Error Condition : Leaves with the error code.
319 @param aDataLogger The output logging object.
320 @param aObserver The observer of this UnitTest.
321 @return CStringPool_LongTable_UnitTest* The constructed object.
323 @post CStringPool_LongTable_UnitTest is fully constructed, and initialised.
325 static CStringPool_LongTable_UnitTest* NewL(CDataLogger& aDataLogger,
326 MUnitTestObserver& aObserver);
329 @fn RunError(TInt aError)
330 Intended Usage : Intercept the panic caused by a RunL leave,
331 to restore the CStringPool_LargeTable_UnitTest
332 object to a sensible state.
333 (called by the Active Scheduler immediately before the Panic).
334 Error Condition : @see CUnitTest::RunError().
336 @return TInt KErrNone if cleanup successful, otherwise
337 @see CUnitTest::RunError()
338 @pre CStringPool_LongTable_UnitTest is fully constructed, and initialised.
339 @post The object has been restored to a sensible state.
341 inline TInt RunError(TInt aError);
344 @fn ~CStringPool_LongTable_UnitTest()
345 Intended Usage : Standard Destructor.
346 Error Condition : None.
348 @pre CStringPool_LongTable_UnitTest is fully constructed.
349 @post CStringPool_LongTable_UnitTest is fully destroyed.
351 ~CStringPool_LongTable_UnitTest();
355 @fn CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
356 MUnitTestObserver& aObserver)
357 Intended Usage : Default constructor.
358 Error Condition : None.
360 @param aDataLogger The output logging object.
361 @param aObserver The observer of this UnitTest.
362 @param aStateAccessor WhiteBox state access to the StringPool class.
364 @post CStringPool_LongTable_UnitTest is fully constructed.
366 inline CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
367 MUnitTestObserver& aObserver);
370 @fn void ConstructL()
371 Intended Usage : Second phase of safe two phase construction,
372 to complete the object initialisation.
373 Error Condition : Leaves with an error code.
374 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
377 @pre CStringPool_LongTable_UnitTest is fully constructed.
378 @post CStringPool_LongTable_UnitTest is fully initialised.
383 The context of the Unit Test.
384 i.e The StringPool class tested by this UnitTest's transitions.
386 CStringPool_UnitTestContext* iUTContext;
387 TStringPool_StateAccessor* iStateAccessor;
388 TStringPool_True_TransitionValidator* iTrueValidator;
389 TStringPool_False_TransitionValidator* iFalseValidator;
390 }; // CStringPool_LongTable_UnitTest
392 // ______________________________________________________________________________
397 Comments : Unit Test for CaseSensitive on CStringPool, the class under test.
399 class CStringPool_CaseSensitive_UnitTest : public CUnitTest
403 @fn NewL(CDataLogger& aDataLogger,
404 MUnitTestObserver& aObserver)
405 Intended Usage : Standard two-phase construction which leaves nothing on the
407 Error Condition : Leaves with the error code.
410 @param aDataLogger The output logging object.
411 @param aObserver The observer of this UnitTest.
412 @return CStringPool_CaseSensitive_UnitTest* The constructed object.
414 @post CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
416 static CStringPool_CaseSensitive_UnitTest* NewL(CDataLogger& aDataLogger,
417 MUnitTestObserver& aObserver);
420 @fn RunError(TInt aError)
421 Intended Usage : Intercept the panic caused by a RunL leave,
422 to restore the CStringPool_CaseSensitive_UnitTest
423 object to a sensible state.
424 (called by the Active Scheduler immediately before the Panic).
425 Error Condition : @see CUnitTest::RunError().
427 @return KErrNone if cleanup successful, otherwise
428 @see CUnitTest::RunError()
429 @pre CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
430 @post The object has been restored to a sensible state.
432 inline TInt RunError(TInt aError);
435 @fn ~CStringPool_CaseSensitive_UnitTest()
436 Intended Usage : Standard Destructor.
437 Error Condition : None.
439 @pre CStringPool_CaseSensitive_UnitTest is fully constructed.
440 @post CStringPool_CaseSensitive_UnitTest is fully destroyed.
442 ~CStringPool_CaseSensitive_UnitTest();
446 @fn CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
447 MUnitTestObserver& aObserver)
448 Intended Usage : Default constructor.
449 Error Condition : None.
451 @param aDataLogger The output logging object.
452 @param aObserver The observer of this UnitTest.
453 @param aStateAccessor WhiteBox state access to the CStringPool class.
455 @post CStringPool_CaseSensitive_UnitTest is fully constructed.
457 inline CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
458 MUnitTestObserver& aObserver);
461 @fn void ConstructL()
462 Intended Usage : Second phase of safe two phase construction,
463 to complete the object initialisation.
464 Error Condition : Leaves with an error code.
465 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
468 @pre CStringPool_CaseSensitive_UnitTest is fully constructed.
469 @post CStringPool_CaseSensitive_UnitTest is fully initialized.
474 The context of the Unit Test.
475 i.e The CStringPool class tested by this UnitTest's transitions.
477 CStringPool_UnitTestContext* iUTContext;
478 TStringPool_StateAccessor* iStateAccessor;
479 TStringPool_True_TransitionValidator* iTrueValidator;
480 TStringPool_False_TransitionValidator* iFalseValidator;
481 }; // CStringPool_CaseSensitive_UnitTest
483 // ______________________________________________________________________________
488 Comments : Unit Test for SmallTableCS on CStringPool, the class under test.
490 class CStringPool_ShortTableCS_UnitTest : public CUnitTest
494 @fn NewL(CDataLogger& aDataLogger,
495 MUnitTestObserver& aObserver)
496 Intended Usage : Standard two-phase construction which leaves nothing on the
498 Error Condition : Leaves with the error code.
501 @param aDataLogger The output logging object.
502 @param aObserver The observer of this UnitTest.
503 @return CStringPool_ShortTableCS_UnitTest* The constructed object.
505 @post CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
507 static CStringPool_ShortTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
508 MUnitTestObserver& aObserver);
511 @fn RunError(TInt aError)
512 Intended Usage : Intercept the panic caused by a RunL leave,
513 to restore the CStringPool_ShortTableCS_UnitTest
514 object to a sensible state.
515 (called by the Active Scheduler immediately before the Panic).
516 Error Condition : @see CUnitTest::RunError().
518 @return KErrNone if cleanup successful, otherwise
519 @see CUnitTest::RunError()
520 @pre CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
521 @post The object has been restored to a sensible state.
523 inline TInt RunError(TInt aError);
526 @fn ~CStringPool_ShortTableCS_UnitTest()
527 Intended Usage : Standard Destructor.
528 Error Condition : None.
530 @pre CStringPool_ShortTableCS_UnitTest is fully constructed.
531 @post CStringPool_ShortTableCS_UnitTest is fully destroyed.
533 ~CStringPool_ShortTableCS_UnitTest();
537 @fn CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
538 MUnitTestObserver& aObserver)
539 Intended Usage : Default constructor.
540 Error Condition : None.
542 @param aDataLogger The output logging object.
543 @param aObserver The observer of this UnitTest.
544 @param aStateAccessor WhiteBox state access to the CStringPool class.
546 @post CStringPool_ShortTableCS_UnitTest is fully constructed.
548 inline CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
549 MUnitTestObserver& aObserver);
552 @fn void ConstructL()
553 Intended Usage : Second phase of safe two phase construction,
554 to complete the object initialisation.
555 Error Condition : Leaves with an error code.
556 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
559 @pre CStringPool_ShortTableCS_UnitTest is fully constructed.
560 @post CStringPool_ShortTableCS_UnitTest is fully initialized.
565 The context of the Unit Test.
566 i.e The CStringPool class tested by this UnitTest's transitions.
568 CStringPool_UnitTestContext* iUTContext;
569 TStringPool_StateAccessor* iStateAccessor;
570 TStringPool_True_TransitionValidator* iTrueValidator;
571 TStringPool_False_TransitionValidator* iFalseValidator;
572 }; // CStringPool_ShortTableCS_UnitTest
574 // ______________________________________________________________________________
579 Comments : Unit Test for IrrelevantTableCS on CStringPool, the class under test.
581 class CStringPool_IrrelevantTableCS_UnitTest : public CUnitTest
585 @fn NewL(CDataLogger& aDataLogger,
586 MUnitTestObserver& aObserver)
587 Intended Usage : Standard two-phase construction which leaves nothing on the
589 Error Condition : Leaves with the error code.
592 @param aDataLogger The output logging object.
593 @param aObserver The observer of this UnitTest.
594 @return CStringPool_IrrelevantTableCS_UnitTest* The constructed object.
596 @post CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
598 static CStringPool_IrrelevantTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
599 MUnitTestObserver& aObserver);
602 @fn RunError(TInt aError)
603 Intended Usage : Intercept the panic caused by a RunL leave,
604 to restore the CStringPool_IrrelevantTableCS_UnitTest
605 object to a sensible state.
606 (called by the Active Scheduler immediately before the Panic).
607 Error Condition : @see CUnitTest::RunError().
609 @return KErrNone if cleanup successful, otherwise
610 @see CUnitTest::RunError()
611 @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
612 @post The object has been restored to a sensible state.
614 inline TInt RunError(TInt aError);
617 @fn ~CStringPool_IrrelevantTableCS_UnitTest()
618 Intended Usage : Standard Destructor.
619 Error Condition : None.
621 @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
622 @post CStringPool_IrrelevantTableCS_UnitTest is fully destroyed.
624 ~CStringPool_IrrelevantTableCS_UnitTest();
628 @fn CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
629 MUnitTestObserver& aObserver)
630 Intended Usage : Default constructor.
631 Error Condition : None.
633 @param aDataLogger The output logging object.
634 @param aObserver The observer of this UnitTest.
635 @param aStateAccessor WhiteBox state access to the CStringPool class.
637 @post CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
639 inline CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
640 MUnitTestObserver& aObserver);
643 @fn void ConstructL()
644 Intended Usage : Second phase of safe two phase construction,
645 to complete the object initialisation.
646 Error Condition : Leaves with an error code.
647 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
650 @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
651 @post CStringPool_IrrelevantTableCS_UnitTest is fully initialized.
655 CStringPool_UnitTestContext* iUTContext;
656 TStringPool_StateAccessor* iStateAccessor;
657 TStringPool_True_TransitionValidator* iTrueValidator;
658 TStringPool_False_TransitionValidator* iFalseValidator;
659 }; // CStringPool_IrrelevantTableCS_UnitTest
661 // ______________________________________________________________________________
666 Comments : Unit Test for LargeCS on CStringPool, the class under test.
668 class CStringPool_LongTableCS_UnitTest : public CUnitTest
672 @fn NewL(CDataLogger& aDataLogger,
673 MUnitTestObserver& aObserver)
674 Intended Usage : Standard two-phase construction which leaves nothing on the
676 Error Condition : Leaves with the error code.
679 @param aDataLogger The output logging object.
680 @param aObserver The observer of this UnitTest.
681 @return CStringPool_LongTableCS_UnitTest* The constructed object.
683 @post CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
685 static CStringPool_LongTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
686 MUnitTestObserver& aObserver);
689 @fn RunError(TInt aError)
690 Intended Usage : Intercept the panic caused by a RunL leave,
691 to restore the CStringPool_LongTableCS_UnitTest
692 object to a sensible state.
693 (called by the Active Scheduler immediately before the Panic).
694 Error Condition : @see CUnitTest::RunError().
696 @return KErrNone if cleanup successful, otherwise
697 @see CUnitTest::RunError()
698 @pre CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
699 @post The object has been restored to a sensible state.
701 inline TInt RunError(TInt aError);
704 @fn ~CStringPool_LongTableCS_UnitTest()
705 Intended Usage : Standard Destructor.
706 Error Condition : None.
708 @pre CStringPool_LongTableCS_UnitTest is fully constructed.
709 @post CStringPool_LongTableCS_UnitTest is fully destroyed.
711 ~CStringPool_LongTableCS_UnitTest();
715 @fn CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
716 MUnitTestObserver& aObserver)
717 Intended Usage : Default constructor.
718 Error Condition : None.
720 @param aDataLogger The output logging object.
721 @param aObserver The observer of this UnitTest.
722 @param aStateAccessor WhiteBox state access to the CStringPool class.
724 @post CStringPool_LongTableCS_UnitTest is fully constructed.
726 inline CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
727 MUnitTestObserver& aObserver);
730 @fn void ConstructL()
731 Intended Usage : Second phase of safe two phase construction,
732 to complete the object initialisation.
733 Error Condition : Leaves with an error code.
734 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
737 @pre CStringPool_LongTableCS_UnitTest is fully constructed.
738 @post CStringPool_LongTableCS_UnitTest is fully initialized.
743 The context of the Unit Test.
744 i.e The CStringPool class tested by this UnitTest's transitions.
746 CStringPool_UnitTestContext* iUTContext;
747 TStringPool_StateAccessor* iStateAccessor;
748 TStringPool_True_TransitionValidator* iTrueValidator;
749 TStringPool_False_TransitionValidator* iFalseValidator;
750 }; // CStringPool_LongTableCS_UnitTest
752 // ______________________________________________________________________________
757 Comments : Unit Test for MultipleTableShortCI on RStringPool, the class under test.
759 class CStringPool_MultipleTableShortCI_UnitTest : public CUnitTest
763 @fn NewL(CDataLogger& aDataLogger,
764 MUnitTestObserver& aObserver)
765 Intended Usage : Standard two-phase construction which leaves nothing on the
767 Error Condition : Leaves with the error code.
770 @param aDataLogger The output logging object.
771 @param aObserver The observer of this UnitTest.
772 @return CStringPool_MultipleTableShortCI_UnitTest* The constructed object.
774 @post CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
776 static CStringPool_MultipleTableShortCI_UnitTest* NewL(CDataLogger& aDataLogger,
777 MUnitTestObserver& aObserver);
780 @fn RunError(TInt aError)
781 Intended Usage : Intercept the panic caused by a RunL leave,
782 to restore the CStringPool_MultipleTableShortCI_UnitTest
783 object to a sensible state.
784 (called by the Active Scheduler immediately before the Panic).
785 Error Condition : @see CUnitTest::RunError().
787 @return KErrNone if cleanup successful, otherwise
788 @see CUnitTest::RunError()
789 @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
790 @post The object has been restored to a sensible state.
792 inline TInt RunError(TInt aError);
795 @fn ~CStringPool_MultipleTableShortCI_UnitTest()
796 Intended Usage : Standard Destructor.
797 Error Condition : None.
799 @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
800 @post CStringPool_MultipleTableShortCI_UnitTest is fully destroyed.
802 ~CStringPool_MultipleTableShortCI_UnitTest();
806 @fn CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
807 MUnitTestObserver& aObserver)
808 Intended Usage : Default constructor.
809 Error Condition : None.
811 @param aDataLogger The output logging object.
812 @param aObserver The observer of this UnitTest.
813 @param aStateAccessor WhiteBox state access to the RStringPool class.
815 @post CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
817 inline CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
818 MUnitTestObserver& aObserver);
821 @fn void ConstructL()
822 Intended Usage : Second phase of safe two phase construction,
823 to complete the object initialisation.
824 Error Condition : Leaves with an error code.
825 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
828 @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
829 @post CStringPool_MultipleTableShortCI_UnitTest is fully initialized.
834 The context of the Unit Test.
835 i.e The RStringPool class tested by this UnitTest's transitions.
837 CStringPool_UnitTestContext* iUTContext;
838 TStringPool_StateAccessor* iStateAccessor;
839 TStringPool_True_TransitionValidator* iTrueValidator;
840 TStringPool_False_TransitionValidator* iFalseValidator;
841 }; // CStringPool_MultipleTableShortCI_UnitTest
844 // ______________________________________________________________________________
849 Comments : Unit Test for MultipleTableShortCS on RStringPool, the class under test.
851 class CStringPool_MultipleTableShortCS_UnitTest : public CUnitTest
855 @fn NewL(CDataLogger& aDataLogger,
856 MUnitTestObserver& aObserver)
857 Intended Usage : Standard two-phase construction which leaves nothing on the
859 Error Condition : Leaves with the error code.
862 @param aDataLogger The output logging object.
863 @param aObserver The observer of this UnitTest.
864 @return CStringPool_MultipleTableShortCS_UnitTest* The constructed object.
866 @post CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
868 static CStringPool_MultipleTableShortCS_UnitTest* NewL(CDataLogger& aDataLogger,
869 MUnitTestObserver& aObserver);
872 @fn RunError(TInt aError)
873 Intended Usage : Intercept the panic caused by a RunL leave,
874 to restore the CStringPool_MultipleTableShortCS_UnitTest
875 object to a sensible state.
876 (called by the Active Scheduler immediately before the Panic).
877 Error Condition : @see CUnitTest::RunError().
879 @return KErrNone if cleanup successful, otherwise
880 @see CUnitTest::RunError()
881 @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
882 @post The object has been restored to a sensible state.
884 inline TInt RunError(TInt aError);
887 @fn ~CStringPool_MultipleTableShortCS_UnitTest()
888 Intended Usage : Standard Destructor.
889 Error Condition : None.
891 @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
892 @post CStringPool_MultipleTableShortCS_UnitTest is fully destroyed.
894 ~CStringPool_MultipleTableShortCS_UnitTest();
898 @fn CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
899 MUnitTestObserver& aObserver)
900 Intended Usage : Default constructor.
901 Error Condition : None.
903 @param aDataLogger The output logging object.
904 @param aObserver The observer of this UnitTest.
905 @param aStateAccessor WhiteBox state access to the RStringPool class.
907 @post CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
909 inline CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
910 MUnitTestObserver& aObserver);
913 @fn void ConstructL()
914 Intended Usage : Second phase of safe two phase construction,
915 to complete the object initialisation.
916 Error Condition : Leaves with an error code.
917 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
920 @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
921 @post CStringPool_MultipleTableShortCS_UnitTest is fully initialized.
926 The context of the Unit Test.
927 i.e The RStringPool class tested by this UnitTest's transitions.
929 CStringPool_UnitTestContext* iUTContext;
930 TStringPool_StateAccessor* iStateAccessor;
931 TStringPool_True_TransitionValidator* iTrueValidator;
932 TStringPool_False_TransitionValidator* iFalseValidator;
933 }; // CStringPool_MultipleTableShortCS_UnitTest
936 #endif // __STRINGPOOLUNITTEST_H__