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 // Demonstrates a simple set of derived class implementations to
15 // test the RStringPool class using the test bed.
16 // It may be used as a basis to develop a full test bed dll.
17 // For support and comment please contact the authors.
22 #pragma warning(disable : 4097) // disable typedef warning
25 #include "StringPoolUnitTest.h"
26 #include <ecom/test_bed/componenttester.h>
28 // ______________________________________________________________________________
32 Comments : Test the RStringPool class.
34 class CStringPool_ComponentTest : public CComponentTester
38 @fn NewLC(CDataLogger& aDataLogger,
39 MComponentTestObserver& 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 component test.
47 @return CStringPool_ComponentTest* The constructed object.
49 @post CStringPool_ComponentTest is fully constructed.
51 static CStringPool_ComponentTest* NewLC(CDataLogger& aDataLogger,
52 MComponentTestObserver& aObserver);
56 @fn CStringPool_ComponentTest(CDataLogger& aDataLogger,
57 MComponentTestObserver& aObserver)
58 Intended Usage : Standard c'tor method.
59 Error Condition : None.
61 @param aDataLogger The logging object.
62 @param aObserver The observer of this component test.
64 @post CStringPool_ComponentTest is fully constructed.
66 inline CStringPool_ComponentTest(CDataLogger& aDataLogger,
67 MComponentTestObserver& aObserver);
70 Intended Usage : Second phase of safe two phase construction,
71 to complete the object initialisation.
72 Error Condition : Leaves with an error code.
76 @pre CStringPool_ComponentTest is fully constructed.
77 @post CStringPool_ComponentTest is fully initialised.
79 inline void ConstructL();
81 }; // CStringPool_ComponentTest
83 // ______________________________________________________________________________
85 inline CStringPool_ComponentTest* CStringPool_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
87 CStringPool_ComponentTest* self = new (ELeave) CStringPool_ComponentTest(aDataLogger, aObserver);
88 CleanupStack::PushL(self);
93 inline CStringPool_ComponentTest::CStringPool_ComponentTest(CDataLogger& aDataLogger,
94 MComponentTestObserver& aObserver)
95 : CComponentTester(aDataLogger, aObserver)
101 @SYMTestCaseID SYSLIB-BAFL-CT-0493
102 @SYMTestCaseDesc Tests the functionality of RStringPool class
103 @SYMTestPriority High
104 @SYMTestActions Attempt to load short,large,multiple and irrelevant tables
105 @SYMTestExpectedResults Test must not fail
108 inline void CStringPool_ComponentTest::ConstructL()
110 // Perform base class initialization
111 ComponentTesterConstructL();
112 // CI tests with no table loaded
113 AddUnitTestL(CStringPool_CaseInsensitive_UnitTest::NewL(iDataLogger, *this));
114 // CS tests with a Short table loaded
115 AddUnitTestL(CStringPool_CaseSensitive_UnitTest::NewL(iDataLogger, *this));
116 // CI tests with a Short table loaded, and callback test
117 //.Also tested defects : BEU-55DJG3 , KRN-56NDEZ, APY-57TEH3, HAD57SK27OK
118 AddUnitTestL(CStringPool_ShortTable_UnitTest::NewL(iDataLogger, *this));
119 // CS tests with a Short table loaded
120 AddUnitTestL(CStringPool_ShortTableCS_UnitTest::NewL(iDataLogger, *this));
121 // CI tests with a Irrelevant table loaded
122 AddUnitTestL(CStringPool_IrrelevantTable_UnitTest::NewL(iDataLogger, *this));
123 // CS tests with a Irrelevant table loaded
124 AddUnitTestL(CStringPool_IrrelevantTableCS_UnitTest::NewL(iDataLogger, *this));
125 // CI tests with a Large table loaded
126 AddUnitTestL(CStringPool_LongTable_UnitTest::NewL(iDataLogger, *this));
127 // CS tests with a Large table loaded
128 AddUnitTestL(CStringPool_LongTableCS_UnitTest::NewL(iDataLogger, *this));
129 // CI tests with a Multiple Tables
130 AddUnitTestL(CStringPool_MultipleTableShortCI_UnitTest::NewL(iDataLogger, *this));
131 // CS tests with a Multiple Tables
132 AddUnitTestL(CStringPool_MultipleTableShortCS_UnitTest::NewL(iDataLogger, *this));
136 // ______________________________________________________________________________
138 EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
139 MComponentTestObserver& aComponentTestObserver)
141 return CStringPool_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
145 // ___________________________________________________________________________
147 // This section of the module simply includes the exported test harness template which
148 // makes this a "whole" CPP file with a E32Main entry point below. The test MMP
149 // project file can then produce a EXE for the test project instead of a DLL.
151 #include "ecom/test_bed/testharnesstemplate.h"
153 GLDEF_C TInt E32Main()
155 return E32Main_TestHarness(NewComponentTestLC);