sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The unit test class definitions for the RStringPool class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __STRINGPOOLUNITTEST_H__
|
sl@0
|
19 |
#define __STRINGPOOLUNITTEST_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <ecom/test_bed/testbeddefinitions.h>
|
sl@0
|
22 |
#include "StringPoolStateAccessor.h"
|
sl@0
|
23 |
#include "StringPoolTransitionValidation.h"
|
sl@0
|
24 |
#include "StringPoolTransitions.h"
|
sl@0
|
25 |
#include <stringpool.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
// ______________________________________________________________________________
|
sl@0
|
29 |
//
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
Comments : Unit Test for CaseInsensitive on StringPool, the class under test.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class CStringPool_CaseInsensitive_UnitTest : public CUnitTest
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
39 |
MUnitTestObserver& aObserver)
|
sl@0
|
40 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
41 |
cleanup stack.
|
sl@0
|
42 |
Error Condition : Leaves with the error code.
|
sl@0
|
43 |
@leave KErrNoMemory
|
sl@0
|
44 |
@since 6.0
|
sl@0
|
45 |
@param aDataLogger The output logging object.
|
sl@0
|
46 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
47 |
@return CStringPool_CaseInsensitive_UnitTest* The constructed object.
|
sl@0
|
48 |
@pre None.
|
sl@0
|
49 |
@post CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
static CStringPool_CaseInsensitive_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
52 |
MUnitTestObserver& aObserver);
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
@fn RunError(TInt aError)
|
sl@0
|
56 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
57 |
to restore the CStringPool_CaseInsensitive_UnitTest
|
sl@0
|
58 |
object to a sensible state.
|
sl@0
|
59 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
60 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
61 |
@since 6.0
|
sl@0
|
62 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
63 |
@see CUnitTest::RunError()
|
sl@0
|
64 |
@pre CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
|
sl@0
|
65 |
@post The object has been restored to a sensible state.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
inline TInt RunError(TInt aError);
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
@fn ~CStringPool_CaseInsensitive_UnitTest()
|
sl@0
|
71 |
Intended Usage : Standard Destructor.
|
sl@0
|
72 |
Error Condition : None.
|
sl@0
|
73 |
@since 6.0
|
sl@0
|
74 |
@pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
|
sl@0
|
75 |
@post CStringPool_CaseInsensitive_UnitTest is fully destroyed.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
~CStringPool_CaseInsensitive_UnitTest();
|
sl@0
|
78 |
|
sl@0
|
79 |
private:
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
@fn CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
82 |
MUnitTestObserver& aObserver)
|
sl@0
|
83 |
Intended Usage : Default constructor.
|
sl@0
|
84 |
Error Condition : None.
|
sl@0
|
85 |
@since 6.0
|
sl@0
|
86 |
@param aDataLogger The output logging object.
|
sl@0
|
87 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
88 |
@param aStateAccessor WhiteBox state access to the StringPool class.
|
sl@0
|
89 |
@pre None.
|
sl@0
|
90 |
@post CStringPool_CaseInsensitive_UnitTest is fully constructed.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
inline CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
93 |
MUnitTestObserver& aObserver);
|
sl@0
|
94 |
|
sl@0
|
95 |
/**
|
sl@0
|
96 |
@fn void ConstructL()
|
sl@0
|
97 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
98 |
to complete the object initialisation.
|
sl@0
|
99 |
Error Condition : Leaves with an error code.
|
sl@0
|
100 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
101 |
@since 6.0
|
sl@0
|
102 |
@return None
|
sl@0
|
103 |
@pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
|
sl@0
|
104 |
@post CStringPool_CaseInsensitive_UnitTest is fully initialised.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
void ConstructL();
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
The context of the Unit Test.
|
sl@0
|
110 |
i.e The StringPool class tested by this UnitTest's transitions.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
113 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
114 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
115 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
116 |
}; // CStringPool_CaseInsensitive_UnitTest
|
sl@0
|
117 |
|
sl@0
|
118 |
// ______________________________________________________________________________
|
sl@0
|
119 |
//
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
@internalComponent
|
sl@0
|
122 |
Comments : Unit Test for SmallTable on StringPool, the class under test.
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
class CStringPool_ShortTable_UnitTest : public CUnitTest
|
sl@0
|
125 |
{
|
sl@0
|
126 |
public:
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
129 |
MUnitTestObserver& aObserver)
|
sl@0
|
130 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
131 |
cleanup stack.
|
sl@0
|
132 |
Error Condition : Leaves with the error code.
|
sl@0
|
133 |
@leave KErrNoMemory
|
sl@0
|
134 |
@since 6.0
|
sl@0
|
135 |
@param aDataLogger The output logging object.
|
sl@0
|
136 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
137 |
@return CStringPool_ShortTable_UnitTest* The constructed object.
|
sl@0
|
138 |
@pre None.
|
sl@0
|
139 |
@post CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
static CStringPool_ShortTable_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
142 |
MUnitTestObserver& aObserver);
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
@fn RunError(TInt aError)
|
sl@0
|
146 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
147 |
to restore the CStringPool_ShortTable_UnitTest
|
sl@0
|
148 |
object to a sensible state.
|
sl@0
|
149 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
150 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
151 |
@since 6.0
|
sl@0
|
152 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
153 |
@see CUnitTest::RunError()
|
sl@0
|
154 |
@pre CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
155 |
@post The object has been restored to a sensible state.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
inline TInt RunError(TInt aError);
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
@fn ~CStringPool_ShortTable_UnitTest()
|
sl@0
|
161 |
Intended Usage : Standard Destructor.
|
sl@0
|
162 |
Error Condition : None.
|
sl@0
|
163 |
@since 6.0
|
sl@0
|
164 |
@pre CStringPool_ShortTable_UnitTest is fully constructed.
|
sl@0
|
165 |
@post CStringPool_ShortTable_UnitTest is fully destroyed.
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
~CStringPool_ShortTable_UnitTest();
|
sl@0
|
168 |
|
sl@0
|
169 |
private:
|
sl@0
|
170 |
/**
|
sl@0
|
171 |
@fn CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
172 |
MUnitTestObserver& aObserver)
|
sl@0
|
173 |
Intended Usage : Default constructor.
|
sl@0
|
174 |
Error Condition : None.
|
sl@0
|
175 |
@since 6.0
|
sl@0
|
176 |
@param aDataLogger The output logging object.
|
sl@0
|
177 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
178 |
@param aStateAccessor WhiteBox state access to the StringPool class.
|
sl@0
|
179 |
@pre None.
|
sl@0
|
180 |
@post CStringPool_ShortTable_UnitTest is fully constructed.
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
inline CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
183 |
MUnitTestObserver& aObserver);
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
@fn void ConstructL()
|
sl@0
|
187 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
188 |
to complete the object initialisation.
|
sl@0
|
189 |
Error Condition : Leaves with an error code.
|
sl@0
|
190 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
191 |
@since 6.0
|
sl@0
|
192 |
@return None
|
sl@0
|
193 |
@pre CStringPool_ShortTable_UnitTest is fully constructed.
|
sl@0
|
194 |
@post CStringPool_ShortTable_UnitTest is fully initialised.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
void ConstructL();
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
The context of the Unit Test.
|
sl@0
|
200 |
i.e The StringPool class tested by this UnitTest's transitions.
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
203 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
204 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
205 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
206 |
}; // CStringPool_ShortTable_UnitTest
|
sl@0
|
207 |
|
sl@0
|
208 |
|
sl@0
|
209 |
|
sl@0
|
210 |
|
sl@0
|
211 |
// ______________________________________________________________________________
|
sl@0
|
212 |
//
|
sl@0
|
213 |
/**
|
sl@0
|
214 |
@internalComponent
|
sl@0
|
215 |
Comments : Unit Test for IrrelevantTable on StringPool, the class under test.
|
sl@0
|
216 |
*/
|
sl@0
|
217 |
class CStringPool_IrrelevantTable_UnitTest : public CUnitTest
|
sl@0
|
218 |
{
|
sl@0
|
219 |
public:
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
222 |
MUnitTestObserver& aObserver)
|
sl@0
|
223 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
224 |
cleanup stack.
|
sl@0
|
225 |
Error Condition : Leaves with the error code.
|
sl@0
|
226 |
@leave KErrNoMemory
|
sl@0
|
227 |
@since 6.0
|
sl@0
|
228 |
@param aDataLogger The output logging object.
|
sl@0
|
229 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
230 |
@return CStringPool_IrrelevantTable_UnitTest* The constructed object.
|
sl@0
|
231 |
@pre None.
|
sl@0
|
232 |
@post CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
233 |
*/
|
sl@0
|
234 |
static CStringPool_IrrelevantTable_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
235 |
MUnitTestObserver& aObserver);
|
sl@0
|
236 |
|
sl@0
|
237 |
/**
|
sl@0
|
238 |
@fn RunError(TInt aError)
|
sl@0
|
239 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
240 |
to restore the CStringPool_IrrelevantTable_UnitTest
|
sl@0
|
241 |
object to a sensible state.
|
sl@0
|
242 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
243 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
244 |
@since 6.0
|
sl@0
|
245 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
246 |
@see CUnitTest::RunError()
|
sl@0
|
247 |
@pre CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
248 |
@post The object has been restored to a sensible state.
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
inline TInt RunError(TInt aError);
|
sl@0
|
251 |
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
@fn ~CStringPool_IrrelevantTable_UnitTest()
|
sl@0
|
254 |
Intended Usage : Standard Destructor.
|
sl@0
|
255 |
Error Condition : None.
|
sl@0
|
256 |
@since 6.0
|
sl@0
|
257 |
@pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
|
sl@0
|
258 |
@post CStringPool_IrrelevantTable_UnitTest is fully destroyed.
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
~CStringPool_IrrelevantTable_UnitTest();
|
sl@0
|
261 |
|
sl@0
|
262 |
private:
|
sl@0
|
263 |
/**
|
sl@0
|
264 |
@fn CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
265 |
MUnitTestObserver& aObserver)
|
sl@0
|
266 |
Intended Usage : Default constructor.
|
sl@0
|
267 |
Error Condition : None.
|
sl@0
|
268 |
@since 6.0
|
sl@0
|
269 |
@param aDataLogger The output logging object.
|
sl@0
|
270 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
271 |
@param aStateAccessor WhiteBox state access to the StringPool class.
|
sl@0
|
272 |
@pre None.
|
sl@0
|
273 |
@post CStringPool_IrrelevantTable_UnitTest is fully constructed.
|
sl@0
|
274 |
*/
|
sl@0
|
275 |
inline CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
276 |
MUnitTestObserver& aObserver);
|
sl@0
|
277 |
|
sl@0
|
278 |
/**
|
sl@0
|
279 |
@fn void ConstructL()
|
sl@0
|
280 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
281 |
to complete the object initialisation.
|
sl@0
|
282 |
Error Condition : Leaves with an error code.
|
sl@0
|
283 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
284 |
@since 6.0
|
sl@0
|
285 |
@return None
|
sl@0
|
286 |
@pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
|
sl@0
|
287 |
@post CStringPool_IrrelevantTable_UnitTest is fully initialised.
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
void ConstructL();
|
sl@0
|
290 |
|
sl@0
|
291 |
/**
|
sl@0
|
292 |
The context of the Unit Test.
|
sl@0
|
293 |
i.e The StringPool class tested by this UnitTest's transitions.
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
296 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
297 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
298 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
299 |
}; // CStringPool_IrrelevantTable_UnitTest
|
sl@0
|
300 |
|
sl@0
|
301 |
|
sl@0
|
302 |
// ______________________________________________________________________________
|
sl@0
|
303 |
//
|
sl@0
|
304 |
/**
|
sl@0
|
305 |
@internalComponent
|
sl@0
|
306 |
Comments : Unit Test for LargeTable on StringPool, the class under test.
|
sl@0
|
307 |
*/
|
sl@0
|
308 |
class CStringPool_LongTable_UnitTest : public CUnitTest
|
sl@0
|
309 |
{
|
sl@0
|
310 |
public:
|
sl@0
|
311 |
/**
|
sl@0
|
312 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
313 |
MUnitTestObserver& aObserver)
|
sl@0
|
314 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
315 |
cleanup stack.
|
sl@0
|
316 |
Error Condition : Leaves with the error code.
|
sl@0
|
317 |
@leave KErrNoMemory
|
sl@0
|
318 |
@since 6.0
|
sl@0
|
319 |
@param aDataLogger The output logging object.
|
sl@0
|
320 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
321 |
@return CStringPool_LongTable_UnitTest* The constructed object.
|
sl@0
|
322 |
@pre None.
|
sl@0
|
323 |
@post CStringPool_LongTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
static CStringPool_LongTable_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
326 |
MUnitTestObserver& aObserver);
|
sl@0
|
327 |
|
sl@0
|
328 |
/**
|
sl@0
|
329 |
@fn RunError(TInt aError)
|
sl@0
|
330 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
331 |
to restore the CStringPool_LargeTable_UnitTest
|
sl@0
|
332 |
object to a sensible state.
|
sl@0
|
333 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
334 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
335 |
@since 6.0
|
sl@0
|
336 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
337 |
@see CUnitTest::RunError()
|
sl@0
|
338 |
@pre CStringPool_LongTable_UnitTest is fully constructed, and initialised.
|
sl@0
|
339 |
@post The object has been restored to a sensible state.
|
sl@0
|
340 |
*/
|
sl@0
|
341 |
inline TInt RunError(TInt aError);
|
sl@0
|
342 |
|
sl@0
|
343 |
/**
|
sl@0
|
344 |
@fn ~CStringPool_LongTable_UnitTest()
|
sl@0
|
345 |
Intended Usage : Standard Destructor.
|
sl@0
|
346 |
Error Condition : None.
|
sl@0
|
347 |
@since 6.0
|
sl@0
|
348 |
@pre CStringPool_LongTable_UnitTest is fully constructed.
|
sl@0
|
349 |
@post CStringPool_LongTable_UnitTest is fully destroyed.
|
sl@0
|
350 |
*/
|
sl@0
|
351 |
~CStringPool_LongTable_UnitTest();
|
sl@0
|
352 |
|
sl@0
|
353 |
private:
|
sl@0
|
354 |
/**
|
sl@0
|
355 |
@fn CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
356 |
MUnitTestObserver& aObserver)
|
sl@0
|
357 |
Intended Usage : Default constructor.
|
sl@0
|
358 |
Error Condition : None.
|
sl@0
|
359 |
@since 6.0
|
sl@0
|
360 |
@param aDataLogger The output logging object.
|
sl@0
|
361 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
362 |
@param aStateAccessor WhiteBox state access to the StringPool class.
|
sl@0
|
363 |
@pre None.
|
sl@0
|
364 |
@post CStringPool_LongTable_UnitTest is fully constructed.
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
inline CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
367 |
MUnitTestObserver& aObserver);
|
sl@0
|
368 |
|
sl@0
|
369 |
/**
|
sl@0
|
370 |
@fn void ConstructL()
|
sl@0
|
371 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
372 |
to complete the object initialisation.
|
sl@0
|
373 |
Error Condition : Leaves with an error code.
|
sl@0
|
374 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
375 |
@since 6.0
|
sl@0
|
376 |
@return None
|
sl@0
|
377 |
@pre CStringPool_LongTable_UnitTest is fully constructed.
|
sl@0
|
378 |
@post CStringPool_LongTable_UnitTest is fully initialised.
|
sl@0
|
379 |
*/
|
sl@0
|
380 |
void ConstructL();
|
sl@0
|
381 |
|
sl@0
|
382 |
/**
|
sl@0
|
383 |
The context of the Unit Test.
|
sl@0
|
384 |
i.e The StringPool class tested by this UnitTest's transitions.
|
sl@0
|
385 |
*/
|
sl@0
|
386 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
387 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
388 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
389 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
390 |
}; // CStringPool_LongTable_UnitTest
|
sl@0
|
391 |
|
sl@0
|
392 |
// ______________________________________________________________________________
|
sl@0
|
393 |
//
|
sl@0
|
394 |
/**
|
sl@0
|
395 |
@internalComponent
|
sl@0
|
396 |
|
sl@0
|
397 |
Comments : Unit Test for CaseSensitive on CStringPool, the class under test.
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
class CStringPool_CaseSensitive_UnitTest : public CUnitTest
|
sl@0
|
400 |
{
|
sl@0
|
401 |
public:
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
404 |
MUnitTestObserver& aObserver)
|
sl@0
|
405 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
406 |
cleanup stack.
|
sl@0
|
407 |
Error Condition : Leaves with the error code.
|
sl@0
|
408 |
@leave KErrNoMemory
|
sl@0
|
409 |
@since 7.0
|
sl@0
|
410 |
@param aDataLogger The output logging object.
|
sl@0
|
411 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
412 |
@return CStringPool_CaseSensitive_UnitTest* The constructed object.
|
sl@0
|
413 |
@pre None.
|
sl@0
|
414 |
@post CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
|
sl@0
|
415 |
*/
|
sl@0
|
416 |
static CStringPool_CaseSensitive_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
417 |
MUnitTestObserver& aObserver);
|
sl@0
|
418 |
|
sl@0
|
419 |
/**
|
sl@0
|
420 |
@fn RunError(TInt aError)
|
sl@0
|
421 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
422 |
to restore the CStringPool_CaseSensitive_UnitTest
|
sl@0
|
423 |
object to a sensible state.
|
sl@0
|
424 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
425 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
426 |
@since 7.0
|
sl@0
|
427 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
428 |
@see CUnitTest::RunError()
|
sl@0
|
429 |
@pre CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
|
sl@0
|
430 |
@post The object has been restored to a sensible state.
|
sl@0
|
431 |
*/
|
sl@0
|
432 |
inline TInt RunError(TInt aError);
|
sl@0
|
433 |
|
sl@0
|
434 |
/**
|
sl@0
|
435 |
@fn ~CStringPool_CaseSensitive_UnitTest()
|
sl@0
|
436 |
Intended Usage : Standard Destructor.
|
sl@0
|
437 |
Error Condition : None.
|
sl@0
|
438 |
@since 7.0
|
sl@0
|
439 |
@pre CStringPool_CaseSensitive_UnitTest is fully constructed.
|
sl@0
|
440 |
@post CStringPool_CaseSensitive_UnitTest is fully destroyed.
|
sl@0
|
441 |
*/
|
sl@0
|
442 |
~CStringPool_CaseSensitive_UnitTest();
|
sl@0
|
443 |
|
sl@0
|
444 |
private:
|
sl@0
|
445 |
/**
|
sl@0
|
446 |
@fn CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
447 |
MUnitTestObserver& aObserver)
|
sl@0
|
448 |
Intended Usage : Default constructor.
|
sl@0
|
449 |
Error Condition : None.
|
sl@0
|
450 |
@since 7.0
|
sl@0
|
451 |
@param aDataLogger The output logging object.
|
sl@0
|
452 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
453 |
@param aStateAccessor WhiteBox state access to the CStringPool class.
|
sl@0
|
454 |
@pre None.
|
sl@0
|
455 |
@post CStringPool_CaseSensitive_UnitTest is fully constructed.
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
inline CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
458 |
MUnitTestObserver& aObserver);
|
sl@0
|
459 |
|
sl@0
|
460 |
/**
|
sl@0
|
461 |
@fn void ConstructL()
|
sl@0
|
462 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
463 |
to complete the object initialisation.
|
sl@0
|
464 |
Error Condition : Leaves with an error code.
|
sl@0
|
465 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
466 |
@since 7.0
|
sl@0
|
467 |
@return None
|
sl@0
|
468 |
@pre CStringPool_CaseSensitive_UnitTest is fully constructed.
|
sl@0
|
469 |
@post CStringPool_CaseSensitive_UnitTest is fully initialized.
|
sl@0
|
470 |
*/
|
sl@0
|
471 |
void ConstructL();
|
sl@0
|
472 |
|
sl@0
|
473 |
/**
|
sl@0
|
474 |
The context of the Unit Test.
|
sl@0
|
475 |
i.e The CStringPool class tested by this UnitTest's transitions.
|
sl@0
|
476 |
*/
|
sl@0
|
477 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
478 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
479 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
480 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
481 |
}; // CStringPool_CaseSensitive_UnitTest
|
sl@0
|
482 |
|
sl@0
|
483 |
// ______________________________________________________________________________
|
sl@0
|
484 |
//
|
sl@0
|
485 |
/**
|
sl@0
|
486 |
@internalAll
|
sl@0
|
487 |
|
sl@0
|
488 |
Comments : Unit Test for SmallTableCS on CStringPool, the class under test.
|
sl@0
|
489 |
*/
|
sl@0
|
490 |
class CStringPool_ShortTableCS_UnitTest : public CUnitTest
|
sl@0
|
491 |
{
|
sl@0
|
492 |
public:
|
sl@0
|
493 |
/**
|
sl@0
|
494 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
495 |
MUnitTestObserver& aObserver)
|
sl@0
|
496 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
497 |
cleanup stack.
|
sl@0
|
498 |
Error Condition : Leaves with the error code.
|
sl@0
|
499 |
@leave KErrNoMemory
|
sl@0
|
500 |
@since 7.0
|
sl@0
|
501 |
@param aDataLogger The output logging object.
|
sl@0
|
502 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
503 |
@return CStringPool_ShortTableCS_UnitTest* The constructed object.
|
sl@0
|
504 |
@pre None.
|
sl@0
|
505 |
@post CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
506 |
*/
|
sl@0
|
507 |
static CStringPool_ShortTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
508 |
MUnitTestObserver& aObserver);
|
sl@0
|
509 |
|
sl@0
|
510 |
/**
|
sl@0
|
511 |
@fn RunError(TInt aError)
|
sl@0
|
512 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
513 |
to restore the CStringPool_ShortTableCS_UnitTest
|
sl@0
|
514 |
object to a sensible state.
|
sl@0
|
515 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
516 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
517 |
@since 7.0
|
sl@0
|
518 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
519 |
@see CUnitTest::RunError()
|
sl@0
|
520 |
@pre CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
521 |
@post The object has been restored to a sensible state.
|
sl@0
|
522 |
*/
|
sl@0
|
523 |
inline TInt RunError(TInt aError);
|
sl@0
|
524 |
|
sl@0
|
525 |
/**
|
sl@0
|
526 |
@fn ~CStringPool_ShortTableCS_UnitTest()
|
sl@0
|
527 |
Intended Usage : Standard Destructor.
|
sl@0
|
528 |
Error Condition : None.
|
sl@0
|
529 |
@since 7.0
|
sl@0
|
530 |
@pre CStringPool_ShortTableCS_UnitTest is fully constructed.
|
sl@0
|
531 |
@post CStringPool_ShortTableCS_UnitTest is fully destroyed.
|
sl@0
|
532 |
*/
|
sl@0
|
533 |
~CStringPool_ShortTableCS_UnitTest();
|
sl@0
|
534 |
|
sl@0
|
535 |
private:
|
sl@0
|
536 |
/**
|
sl@0
|
537 |
@fn CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
538 |
MUnitTestObserver& aObserver)
|
sl@0
|
539 |
Intended Usage : Default constructor.
|
sl@0
|
540 |
Error Condition : None.
|
sl@0
|
541 |
@since 7.0
|
sl@0
|
542 |
@param aDataLogger The output logging object.
|
sl@0
|
543 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
544 |
@param aStateAccessor WhiteBox state access to the CStringPool class.
|
sl@0
|
545 |
@pre None.
|
sl@0
|
546 |
@post CStringPool_ShortTableCS_UnitTest is fully constructed.
|
sl@0
|
547 |
*/
|
sl@0
|
548 |
inline CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
549 |
MUnitTestObserver& aObserver);
|
sl@0
|
550 |
|
sl@0
|
551 |
/**
|
sl@0
|
552 |
@fn void ConstructL()
|
sl@0
|
553 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
554 |
to complete the object initialisation.
|
sl@0
|
555 |
Error Condition : Leaves with an error code.
|
sl@0
|
556 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
557 |
@since 7.0
|
sl@0
|
558 |
@return None
|
sl@0
|
559 |
@pre CStringPool_ShortTableCS_UnitTest is fully constructed.
|
sl@0
|
560 |
@post CStringPool_ShortTableCS_UnitTest is fully initialized.
|
sl@0
|
561 |
*/
|
sl@0
|
562 |
void ConstructL();
|
sl@0
|
563 |
|
sl@0
|
564 |
/**
|
sl@0
|
565 |
The context of the Unit Test.
|
sl@0
|
566 |
i.e The CStringPool class tested by this UnitTest's transitions.
|
sl@0
|
567 |
*/
|
sl@0
|
568 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
569 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
570 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
571 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
572 |
}; // CStringPool_ShortTableCS_UnitTest
|
sl@0
|
573 |
|
sl@0
|
574 |
// ______________________________________________________________________________
|
sl@0
|
575 |
//
|
sl@0
|
576 |
/**
|
sl@0
|
577 |
@internalAll
|
sl@0
|
578 |
|
sl@0
|
579 |
Comments : Unit Test for IrrelevantTableCS on CStringPool, the class under test.
|
sl@0
|
580 |
*/
|
sl@0
|
581 |
class CStringPool_IrrelevantTableCS_UnitTest : public CUnitTest
|
sl@0
|
582 |
{
|
sl@0
|
583 |
public:
|
sl@0
|
584 |
/**
|
sl@0
|
585 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
586 |
MUnitTestObserver& aObserver)
|
sl@0
|
587 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
588 |
cleanup stack.
|
sl@0
|
589 |
Error Condition : Leaves with the error code.
|
sl@0
|
590 |
@leave KErrNoMemory
|
sl@0
|
591 |
@since 7.0
|
sl@0
|
592 |
@param aDataLogger The output logging object.
|
sl@0
|
593 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
594 |
@return CStringPool_IrrelevantTableCS_UnitTest* The constructed object.
|
sl@0
|
595 |
@pre None.
|
sl@0
|
596 |
@post CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
597 |
*/
|
sl@0
|
598 |
static CStringPool_IrrelevantTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
599 |
MUnitTestObserver& aObserver);
|
sl@0
|
600 |
|
sl@0
|
601 |
/**
|
sl@0
|
602 |
@fn RunError(TInt aError)
|
sl@0
|
603 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
604 |
to restore the CStringPool_IrrelevantTableCS_UnitTest
|
sl@0
|
605 |
object to a sensible state.
|
sl@0
|
606 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
607 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
608 |
@since 7.0
|
sl@0
|
609 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
610 |
@see CUnitTest::RunError()
|
sl@0
|
611 |
@pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
612 |
@post The object has been restored to a sensible state.
|
sl@0
|
613 |
*/
|
sl@0
|
614 |
inline TInt RunError(TInt aError);
|
sl@0
|
615 |
|
sl@0
|
616 |
/**
|
sl@0
|
617 |
@fn ~CStringPool_IrrelevantTableCS_UnitTest()
|
sl@0
|
618 |
Intended Usage : Standard Destructor.
|
sl@0
|
619 |
Error Condition : None.
|
sl@0
|
620 |
@since 7.0
|
sl@0
|
621 |
@pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
|
sl@0
|
622 |
@post CStringPool_IrrelevantTableCS_UnitTest is fully destroyed.
|
sl@0
|
623 |
*/
|
sl@0
|
624 |
~CStringPool_IrrelevantTableCS_UnitTest();
|
sl@0
|
625 |
|
sl@0
|
626 |
private:
|
sl@0
|
627 |
/**
|
sl@0
|
628 |
@fn CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
629 |
MUnitTestObserver& aObserver)
|
sl@0
|
630 |
Intended Usage : Default constructor.
|
sl@0
|
631 |
Error Condition : None.
|
sl@0
|
632 |
@since 7.0
|
sl@0
|
633 |
@param aDataLogger The output logging object.
|
sl@0
|
634 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
635 |
@param aStateAccessor WhiteBox state access to the CStringPool class.
|
sl@0
|
636 |
@pre None.
|
sl@0
|
637 |
@post CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
|
sl@0
|
638 |
*/
|
sl@0
|
639 |
inline CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
640 |
MUnitTestObserver& aObserver);
|
sl@0
|
641 |
|
sl@0
|
642 |
/**
|
sl@0
|
643 |
@fn void ConstructL()
|
sl@0
|
644 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
645 |
to complete the object initialisation.
|
sl@0
|
646 |
Error Condition : Leaves with an error code.
|
sl@0
|
647 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
648 |
@since 7.0
|
sl@0
|
649 |
@return None
|
sl@0
|
650 |
@pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
|
sl@0
|
651 |
@post CStringPool_IrrelevantTableCS_UnitTest is fully initialized.
|
sl@0
|
652 |
*/
|
sl@0
|
653 |
void ConstructL();
|
sl@0
|
654 |
|
sl@0
|
655 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
656 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
657 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
658 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
659 |
}; // CStringPool_IrrelevantTableCS_UnitTest
|
sl@0
|
660 |
|
sl@0
|
661 |
// ______________________________________________________________________________
|
sl@0
|
662 |
//
|
sl@0
|
663 |
/**
|
sl@0
|
664 |
@internalAll
|
sl@0
|
665 |
|
sl@0
|
666 |
Comments : Unit Test for LargeCS on CStringPool, the class under test.
|
sl@0
|
667 |
*/
|
sl@0
|
668 |
class CStringPool_LongTableCS_UnitTest : public CUnitTest
|
sl@0
|
669 |
{
|
sl@0
|
670 |
public:
|
sl@0
|
671 |
/**
|
sl@0
|
672 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
673 |
MUnitTestObserver& aObserver)
|
sl@0
|
674 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
675 |
cleanup stack.
|
sl@0
|
676 |
Error Condition : Leaves with the error code.
|
sl@0
|
677 |
@leave KErrNoMemory
|
sl@0
|
678 |
@since 7.0
|
sl@0
|
679 |
@param aDataLogger The output logging object.
|
sl@0
|
680 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
681 |
@return CStringPool_LongTableCS_UnitTest* The constructed object.
|
sl@0
|
682 |
@pre None.
|
sl@0
|
683 |
@post CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
684 |
*/
|
sl@0
|
685 |
static CStringPool_LongTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
686 |
MUnitTestObserver& aObserver);
|
sl@0
|
687 |
|
sl@0
|
688 |
/**
|
sl@0
|
689 |
@fn RunError(TInt aError)
|
sl@0
|
690 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
691 |
to restore the CStringPool_LongTableCS_UnitTest
|
sl@0
|
692 |
object to a sensible state.
|
sl@0
|
693 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
694 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
695 |
@since 7.0
|
sl@0
|
696 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
697 |
@see CUnitTest::RunError()
|
sl@0
|
698 |
@pre CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
699 |
@post The object has been restored to a sensible state.
|
sl@0
|
700 |
*/
|
sl@0
|
701 |
inline TInt RunError(TInt aError);
|
sl@0
|
702 |
|
sl@0
|
703 |
/**
|
sl@0
|
704 |
@fn ~CStringPool_LongTableCS_UnitTest()
|
sl@0
|
705 |
Intended Usage : Standard Destructor.
|
sl@0
|
706 |
Error Condition : None.
|
sl@0
|
707 |
@since 7.0
|
sl@0
|
708 |
@pre CStringPool_LongTableCS_UnitTest is fully constructed.
|
sl@0
|
709 |
@post CStringPool_LongTableCS_UnitTest is fully destroyed.
|
sl@0
|
710 |
*/
|
sl@0
|
711 |
~CStringPool_LongTableCS_UnitTest();
|
sl@0
|
712 |
|
sl@0
|
713 |
private:
|
sl@0
|
714 |
/**
|
sl@0
|
715 |
@fn CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
716 |
MUnitTestObserver& aObserver)
|
sl@0
|
717 |
Intended Usage : Default constructor.
|
sl@0
|
718 |
Error Condition : None.
|
sl@0
|
719 |
@since 7.0
|
sl@0
|
720 |
@param aDataLogger The output logging object.
|
sl@0
|
721 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
722 |
@param aStateAccessor WhiteBox state access to the CStringPool class.
|
sl@0
|
723 |
@pre None.
|
sl@0
|
724 |
@post CStringPool_LongTableCS_UnitTest is fully constructed.
|
sl@0
|
725 |
*/
|
sl@0
|
726 |
inline CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
727 |
MUnitTestObserver& aObserver);
|
sl@0
|
728 |
|
sl@0
|
729 |
/**
|
sl@0
|
730 |
@fn void ConstructL()
|
sl@0
|
731 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
732 |
to complete the object initialisation.
|
sl@0
|
733 |
Error Condition : Leaves with an error code.
|
sl@0
|
734 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
735 |
@since 7.0
|
sl@0
|
736 |
@return None
|
sl@0
|
737 |
@pre CStringPool_LongTableCS_UnitTest is fully constructed.
|
sl@0
|
738 |
@post CStringPool_LongTableCS_UnitTest is fully initialized.
|
sl@0
|
739 |
*/
|
sl@0
|
740 |
void ConstructL();
|
sl@0
|
741 |
|
sl@0
|
742 |
/**
|
sl@0
|
743 |
The context of the Unit Test.
|
sl@0
|
744 |
i.e The CStringPool class tested by this UnitTest's transitions.
|
sl@0
|
745 |
*/
|
sl@0
|
746 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
747 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
748 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
749 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
750 |
}; // CStringPool_LongTableCS_UnitTest
|
sl@0
|
751 |
|
sl@0
|
752 |
// ______________________________________________________________________________
|
sl@0
|
753 |
//
|
sl@0
|
754 |
/**
|
sl@0
|
755 |
@internalAll
|
sl@0
|
756 |
|
sl@0
|
757 |
Comments : Unit Test for MultipleTableShortCI on RStringPool, the class under test.
|
sl@0
|
758 |
*/
|
sl@0
|
759 |
class CStringPool_MultipleTableShortCI_UnitTest : public CUnitTest
|
sl@0
|
760 |
{
|
sl@0
|
761 |
public:
|
sl@0
|
762 |
/**
|
sl@0
|
763 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
764 |
MUnitTestObserver& aObserver)
|
sl@0
|
765 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
766 |
cleanup stack.
|
sl@0
|
767 |
Error Condition : Leaves with the error code.
|
sl@0
|
768 |
@leave KErrNoMemory
|
sl@0
|
769 |
@since 7.0
|
sl@0
|
770 |
@param aDataLogger The output logging object.
|
sl@0
|
771 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
772 |
@return CStringPool_MultipleTableShortCI_UnitTest* The constructed object.
|
sl@0
|
773 |
@pre None.
|
sl@0
|
774 |
@post CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
|
sl@0
|
775 |
*/
|
sl@0
|
776 |
static CStringPool_MultipleTableShortCI_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
777 |
MUnitTestObserver& aObserver);
|
sl@0
|
778 |
|
sl@0
|
779 |
/**
|
sl@0
|
780 |
@fn RunError(TInt aError)
|
sl@0
|
781 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
782 |
to restore the CStringPool_MultipleTableShortCI_UnitTest
|
sl@0
|
783 |
object to a sensible state.
|
sl@0
|
784 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
785 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
786 |
@since 7.0
|
sl@0
|
787 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
788 |
@see CUnitTest::RunError()
|
sl@0
|
789 |
@pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
|
sl@0
|
790 |
@post The object has been restored to a sensible state.
|
sl@0
|
791 |
*/
|
sl@0
|
792 |
inline TInt RunError(TInt aError);
|
sl@0
|
793 |
|
sl@0
|
794 |
/**
|
sl@0
|
795 |
@fn ~CStringPool_MultipleTableShortCI_UnitTest()
|
sl@0
|
796 |
Intended Usage : Standard Destructor.
|
sl@0
|
797 |
Error Condition : None.
|
sl@0
|
798 |
@since 7.0
|
sl@0
|
799 |
@pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
|
sl@0
|
800 |
@post CStringPool_MultipleTableShortCI_UnitTest is fully destroyed.
|
sl@0
|
801 |
*/
|
sl@0
|
802 |
~CStringPool_MultipleTableShortCI_UnitTest();
|
sl@0
|
803 |
|
sl@0
|
804 |
private:
|
sl@0
|
805 |
/**
|
sl@0
|
806 |
@fn CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
807 |
MUnitTestObserver& aObserver)
|
sl@0
|
808 |
Intended Usage : Default constructor.
|
sl@0
|
809 |
Error Condition : None.
|
sl@0
|
810 |
@since 7.0
|
sl@0
|
811 |
@param aDataLogger The output logging object.
|
sl@0
|
812 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
813 |
@param aStateAccessor WhiteBox state access to the RStringPool class.
|
sl@0
|
814 |
@pre None.
|
sl@0
|
815 |
@post CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
|
sl@0
|
816 |
*/
|
sl@0
|
817 |
inline CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
818 |
MUnitTestObserver& aObserver);
|
sl@0
|
819 |
|
sl@0
|
820 |
/**
|
sl@0
|
821 |
@fn void ConstructL()
|
sl@0
|
822 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
823 |
to complete the object initialisation.
|
sl@0
|
824 |
Error Condition : Leaves with an error code.
|
sl@0
|
825 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
826 |
@since 7.0
|
sl@0
|
827 |
@return None
|
sl@0
|
828 |
@pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
|
sl@0
|
829 |
@post CStringPool_MultipleTableShortCI_UnitTest is fully initialized.
|
sl@0
|
830 |
*/
|
sl@0
|
831 |
void ConstructL();
|
sl@0
|
832 |
|
sl@0
|
833 |
/**
|
sl@0
|
834 |
The context of the Unit Test.
|
sl@0
|
835 |
i.e The RStringPool class tested by this UnitTest's transitions.
|
sl@0
|
836 |
*/
|
sl@0
|
837 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
838 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
839 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
840 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
841 |
}; // CStringPool_MultipleTableShortCI_UnitTest
|
sl@0
|
842 |
|
sl@0
|
843 |
|
sl@0
|
844 |
// ______________________________________________________________________________
|
sl@0
|
845 |
//
|
sl@0
|
846 |
/**
|
sl@0
|
847 |
@internalAll
|
sl@0
|
848 |
|
sl@0
|
849 |
Comments : Unit Test for MultipleTableShortCS on RStringPool, the class under test.
|
sl@0
|
850 |
*/
|
sl@0
|
851 |
class CStringPool_MultipleTableShortCS_UnitTest : public CUnitTest
|
sl@0
|
852 |
{
|
sl@0
|
853 |
public:
|
sl@0
|
854 |
/**
|
sl@0
|
855 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
856 |
MUnitTestObserver& aObserver)
|
sl@0
|
857 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
858 |
cleanup stack.
|
sl@0
|
859 |
Error Condition : Leaves with the error code.
|
sl@0
|
860 |
@leave KErrNoMemory
|
sl@0
|
861 |
@since 7.0
|
sl@0
|
862 |
@param aDataLogger The output logging object.
|
sl@0
|
863 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
864 |
@return CStringPool_MultipleTableShortCS_UnitTest* The constructed object.
|
sl@0
|
865 |
@pre None.
|
sl@0
|
866 |
@post CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
867 |
*/
|
sl@0
|
868 |
static CStringPool_MultipleTableShortCS_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
869 |
MUnitTestObserver& aObserver);
|
sl@0
|
870 |
|
sl@0
|
871 |
/**
|
sl@0
|
872 |
@fn RunError(TInt aError)
|
sl@0
|
873 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
874 |
to restore the CStringPool_MultipleTableShortCS_UnitTest
|
sl@0
|
875 |
object to a sensible state.
|
sl@0
|
876 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
877 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
878 |
@since 7.0
|
sl@0
|
879 |
@return KErrNone if cleanup successful, otherwise
|
sl@0
|
880 |
@see CUnitTest::RunError()
|
sl@0
|
881 |
@pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
|
sl@0
|
882 |
@post The object has been restored to a sensible state.
|
sl@0
|
883 |
*/
|
sl@0
|
884 |
inline TInt RunError(TInt aError);
|
sl@0
|
885 |
|
sl@0
|
886 |
/**
|
sl@0
|
887 |
@fn ~CStringPool_MultipleTableShortCS_UnitTest()
|
sl@0
|
888 |
Intended Usage : Standard Destructor.
|
sl@0
|
889 |
Error Condition : None.
|
sl@0
|
890 |
@since 7.0
|
sl@0
|
891 |
@pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
|
sl@0
|
892 |
@post CStringPool_MultipleTableShortCS_UnitTest is fully destroyed.
|
sl@0
|
893 |
*/
|
sl@0
|
894 |
~CStringPool_MultipleTableShortCS_UnitTest();
|
sl@0
|
895 |
|
sl@0
|
896 |
private:
|
sl@0
|
897 |
/**
|
sl@0
|
898 |
@fn CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
899 |
MUnitTestObserver& aObserver)
|
sl@0
|
900 |
Intended Usage : Default constructor.
|
sl@0
|
901 |
Error Condition : None.
|
sl@0
|
902 |
@since 7.0
|
sl@0
|
903 |
@param aDataLogger The output logging object.
|
sl@0
|
904 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
905 |
@param aStateAccessor WhiteBox state access to the RStringPool class.
|
sl@0
|
906 |
@pre None.
|
sl@0
|
907 |
@post CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
|
sl@0
|
908 |
*/
|
sl@0
|
909 |
inline CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
910 |
MUnitTestObserver& aObserver);
|
sl@0
|
911 |
|
sl@0
|
912 |
/**
|
sl@0
|
913 |
@fn void ConstructL()
|
sl@0
|
914 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
915 |
to complete the object initialisation.
|
sl@0
|
916 |
Error Condition : Leaves with an error code.
|
sl@0
|
917 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
918 |
@since 7.0
|
sl@0
|
919 |
@return None
|
sl@0
|
920 |
@pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
|
sl@0
|
921 |
@post CStringPool_MultipleTableShortCS_UnitTest is fully initialized.
|
sl@0
|
922 |
*/
|
sl@0
|
923 |
void ConstructL();
|
sl@0
|
924 |
|
sl@0
|
925 |
/**
|
sl@0
|
926 |
The context of the Unit Test.
|
sl@0
|
927 |
i.e The RStringPool class tested by this UnitTest's transitions.
|
sl@0
|
928 |
*/
|
sl@0
|
929 |
CStringPool_UnitTestContext* iUTContext;
|
sl@0
|
930 |
TStringPool_StateAccessor* iStateAccessor;
|
sl@0
|
931 |
TStringPool_True_TransitionValidator* iTrueValidator;
|
sl@0
|
932 |
TStringPool_False_TransitionValidator* iFalseValidator;
|
sl@0
|
933 |
}; // CStringPool_MultipleTableShortCS_UnitTest
|
sl@0
|
934 |
|
sl@0
|
935 |
|
sl@0
|
936 |
#endif // __STRINGPOOLUNITTEST_H__
|