1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/StringPoolUnitTest.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,936 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The unit test class definitions for the RStringPool class.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __STRINGPOOLUNITTEST_H__
1.22 +#define __STRINGPOOLUNITTEST_H__
1.23 +
1.24 +#include <ecom/test_bed/testbeddefinitions.h>
1.25 +#include "StringPoolStateAccessor.h"
1.26 +#include "StringPoolTransitionValidation.h"
1.27 +#include "StringPoolTransitions.h"
1.28 +#include <stringpool.h>
1.29 +
1.30 +
1.31 +// ______________________________________________________________________________
1.32 +//
1.33 +/**
1.34 + @internalComponent
1.35 + Comments : Unit Test for CaseInsensitive on StringPool, the class under test.
1.36 + */
1.37 +class CStringPool_CaseInsensitive_UnitTest : public CUnitTest
1.38 + {
1.39 +public:
1.40 + /**
1.41 + @fn NewL(CDataLogger& aDataLogger,
1.42 + MUnitTestObserver& aObserver)
1.43 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.44 + cleanup stack.
1.45 + Error Condition : Leaves with the error code.
1.46 + @leave KErrNoMemory
1.47 + @since 6.0
1.48 + @param aDataLogger The output logging object.
1.49 + @param aObserver The observer of this UnitTest.
1.50 + @return CStringPool_CaseInsensitive_UnitTest* The constructed object.
1.51 + @pre None.
1.52 + @post CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
1.53 + */
1.54 + static CStringPool_CaseInsensitive_UnitTest* NewL(CDataLogger& aDataLogger,
1.55 + MUnitTestObserver& aObserver);
1.56 +
1.57 + /**
1.58 + @fn RunError(TInt aError)
1.59 + Intended Usage : Intercept the panic caused by a RunL leave,
1.60 + to restore the CStringPool_CaseInsensitive_UnitTest
1.61 + object to a sensible state.
1.62 + (called by the Active Scheduler immediately before the Panic).
1.63 + Error Condition : @see CUnitTest::RunError().
1.64 + @since 6.0
1.65 + @return TInt KErrNone if cleanup successful, otherwise
1.66 + @see CUnitTest::RunError()
1.67 + @pre CStringPool_CaseInsensitive_UnitTest is fully constructed, and initialised.
1.68 + @post The object has been restored to a sensible state.
1.69 + */
1.70 + inline TInt RunError(TInt aError);
1.71 +
1.72 + /**
1.73 + @fn ~CStringPool_CaseInsensitive_UnitTest()
1.74 + Intended Usage : Standard Destructor.
1.75 + Error Condition : None.
1.76 + @since 6.0
1.77 + @pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
1.78 + @post CStringPool_CaseInsensitive_UnitTest is fully destroyed.
1.79 + */
1.80 + ~CStringPool_CaseInsensitive_UnitTest();
1.81 +
1.82 +private:
1.83 + /**
1.84 + @fn CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
1.85 + MUnitTestObserver& aObserver)
1.86 + Intended Usage : Default constructor.
1.87 + Error Condition : None.
1.88 + @since 6.0
1.89 + @param aDataLogger The output logging object.
1.90 + @param aObserver The observer of this UnitTest.
1.91 + @param aStateAccessor WhiteBox state access to the StringPool class.
1.92 + @pre None.
1.93 + @post CStringPool_CaseInsensitive_UnitTest is fully constructed.
1.94 + */
1.95 + inline CStringPool_CaseInsensitive_UnitTest(CDataLogger& aDataLogger,
1.96 + MUnitTestObserver& aObserver);
1.97 +
1.98 + /**
1.99 + @fn void ConstructL()
1.100 + Intended Usage : Second phase of safe two phase construction,
1.101 + to complete the object initialisation.
1.102 + Error Condition : Leaves with an error code.
1.103 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.104 + @since 6.0
1.105 + @return None
1.106 + @pre CStringPool_CaseInsensitive_UnitTest is fully constructed.
1.107 + @post CStringPool_CaseInsensitive_UnitTest is fully initialised.
1.108 + */
1.109 + void ConstructL();
1.110 +
1.111 + /**
1.112 + The context of the Unit Test.
1.113 + i.e The StringPool class tested by this UnitTest's transitions.
1.114 + */
1.115 + CStringPool_UnitTestContext* iUTContext;
1.116 + TStringPool_StateAccessor* iStateAccessor;
1.117 + TStringPool_True_TransitionValidator* iTrueValidator;
1.118 + TStringPool_False_TransitionValidator* iFalseValidator;
1.119 + }; // CStringPool_CaseInsensitive_UnitTest
1.120 +
1.121 +// ______________________________________________________________________________
1.122 +//
1.123 +/**
1.124 + @internalComponent
1.125 + Comments : Unit Test for SmallTable on StringPool, the class under test.
1.126 + */
1.127 +class CStringPool_ShortTable_UnitTest : public CUnitTest
1.128 + {
1.129 +public:
1.130 + /**
1.131 + @fn NewL(CDataLogger& aDataLogger,
1.132 + MUnitTestObserver& aObserver)
1.133 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.134 + cleanup stack.
1.135 + Error Condition : Leaves with the error code.
1.136 + @leave KErrNoMemory
1.137 + @since 6.0
1.138 + @param aDataLogger The output logging object.
1.139 + @param aObserver The observer of this UnitTest.
1.140 + @return CStringPool_ShortTable_UnitTest* The constructed object.
1.141 + @pre None.
1.142 + @post CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
1.143 + */
1.144 + static CStringPool_ShortTable_UnitTest* NewL(CDataLogger& aDataLogger,
1.145 + MUnitTestObserver& aObserver);
1.146 +
1.147 + /**
1.148 + @fn RunError(TInt aError)
1.149 + Intended Usage : Intercept the panic caused by a RunL leave,
1.150 + to restore the CStringPool_ShortTable_UnitTest
1.151 + object to a sensible state.
1.152 + (called by the Active Scheduler immediately before the Panic).
1.153 + Error Condition : @see CUnitTest::RunError().
1.154 + @since 6.0
1.155 + @return TInt KErrNone if cleanup successful, otherwise
1.156 + @see CUnitTest::RunError()
1.157 + @pre CStringPool_ShortTable_UnitTest is fully constructed, and initialised.
1.158 + @post The object has been restored to a sensible state.
1.159 + */
1.160 + inline TInt RunError(TInt aError);
1.161 +
1.162 + /**
1.163 + @fn ~CStringPool_ShortTable_UnitTest()
1.164 + Intended Usage : Standard Destructor.
1.165 + Error Condition : None.
1.166 + @since 6.0
1.167 + @pre CStringPool_ShortTable_UnitTest is fully constructed.
1.168 + @post CStringPool_ShortTable_UnitTest is fully destroyed.
1.169 + */
1.170 + ~CStringPool_ShortTable_UnitTest();
1.171 +
1.172 +private:
1.173 + /**
1.174 + @fn CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
1.175 + MUnitTestObserver& aObserver)
1.176 + Intended Usage : Default constructor.
1.177 + Error Condition : None.
1.178 + @since 6.0
1.179 + @param aDataLogger The output logging object.
1.180 + @param aObserver The observer of this UnitTest.
1.181 + @param aStateAccessor WhiteBox state access to the StringPool class.
1.182 + @pre None.
1.183 + @post CStringPool_ShortTable_UnitTest is fully constructed.
1.184 + */
1.185 + inline CStringPool_ShortTable_UnitTest(CDataLogger& aDataLogger,
1.186 + MUnitTestObserver& aObserver);
1.187 +
1.188 + /**
1.189 + @fn void ConstructL()
1.190 + Intended Usage : Second phase of safe two phase construction,
1.191 + to complete the object initialisation.
1.192 + Error Condition : Leaves with an error code.
1.193 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.194 + @since 6.0
1.195 + @return None
1.196 + @pre CStringPool_ShortTable_UnitTest is fully constructed.
1.197 + @post CStringPool_ShortTable_UnitTest is fully initialised.
1.198 + */
1.199 + void ConstructL();
1.200 +
1.201 + /**
1.202 + The context of the Unit Test.
1.203 + i.e The StringPool class tested by this UnitTest's transitions.
1.204 + */
1.205 + CStringPool_UnitTestContext* iUTContext;
1.206 + TStringPool_StateAccessor* iStateAccessor;
1.207 + TStringPool_True_TransitionValidator* iTrueValidator;
1.208 + TStringPool_False_TransitionValidator* iFalseValidator;
1.209 + }; // CStringPool_ShortTable_UnitTest
1.210 +
1.211 +
1.212 +
1.213 +
1.214 +// ______________________________________________________________________________
1.215 +//
1.216 +/**
1.217 + @internalComponent
1.218 + Comments : Unit Test for IrrelevantTable on StringPool, the class under test.
1.219 + */
1.220 +class CStringPool_IrrelevantTable_UnitTest : public CUnitTest
1.221 + {
1.222 +public:
1.223 + /**
1.224 + @fn NewL(CDataLogger& aDataLogger,
1.225 + MUnitTestObserver& aObserver)
1.226 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.227 + cleanup stack.
1.228 + Error Condition : Leaves with the error code.
1.229 + @leave KErrNoMemory
1.230 + @since 6.0
1.231 + @param aDataLogger The output logging object.
1.232 + @param aObserver The observer of this UnitTest.
1.233 + @return CStringPool_IrrelevantTable_UnitTest* The constructed object.
1.234 + @pre None.
1.235 + @post CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
1.236 + */
1.237 + static CStringPool_IrrelevantTable_UnitTest* NewL(CDataLogger& aDataLogger,
1.238 + MUnitTestObserver& aObserver);
1.239 +
1.240 + /**
1.241 + @fn RunError(TInt aError)
1.242 + Intended Usage : Intercept the panic caused by a RunL leave,
1.243 + to restore the CStringPool_IrrelevantTable_UnitTest
1.244 + object to a sensible state.
1.245 + (called by the Active Scheduler immediately before the Panic).
1.246 + Error Condition : @see CUnitTest::RunError().
1.247 + @since 6.0
1.248 + @return TInt KErrNone if cleanup successful, otherwise
1.249 + @see CUnitTest::RunError()
1.250 + @pre CStringPool_IrrelevantTable_UnitTest is fully constructed, and initialised.
1.251 + @post The object has been restored to a sensible state.
1.252 + */
1.253 + inline TInt RunError(TInt aError);
1.254 +
1.255 + /**
1.256 + @fn ~CStringPool_IrrelevantTable_UnitTest()
1.257 + Intended Usage : Standard Destructor.
1.258 + Error Condition : None.
1.259 + @since 6.0
1.260 + @pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
1.261 + @post CStringPool_IrrelevantTable_UnitTest is fully destroyed.
1.262 + */
1.263 + ~CStringPool_IrrelevantTable_UnitTest();
1.264 +
1.265 +private:
1.266 + /**
1.267 + @fn CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
1.268 + MUnitTestObserver& aObserver)
1.269 + Intended Usage : Default constructor.
1.270 + Error Condition : None.
1.271 + @since 6.0
1.272 + @param aDataLogger The output logging object.
1.273 + @param aObserver The observer of this UnitTest.
1.274 + @param aStateAccessor WhiteBox state access to the StringPool class.
1.275 + @pre None.
1.276 + @post CStringPool_IrrelevantTable_UnitTest is fully constructed.
1.277 + */
1.278 + inline CStringPool_IrrelevantTable_UnitTest(CDataLogger& aDataLogger,
1.279 + MUnitTestObserver& aObserver);
1.280 +
1.281 + /**
1.282 + @fn void ConstructL()
1.283 + Intended Usage : Second phase of safe two phase construction,
1.284 + to complete the object initialisation.
1.285 + Error Condition : Leaves with an error code.
1.286 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.287 + @since 6.0
1.288 + @return None
1.289 + @pre CStringPool_IrrelevantTable_UnitTest is fully constructed.
1.290 + @post CStringPool_IrrelevantTable_UnitTest is fully initialised.
1.291 + */
1.292 + void ConstructL();
1.293 +
1.294 + /**
1.295 + The context of the Unit Test.
1.296 + i.e The StringPool class tested by this UnitTest's transitions.
1.297 + */
1.298 + CStringPool_UnitTestContext* iUTContext;
1.299 + TStringPool_StateAccessor* iStateAccessor;
1.300 + TStringPool_True_TransitionValidator* iTrueValidator;
1.301 + TStringPool_False_TransitionValidator* iFalseValidator;
1.302 + }; // CStringPool_IrrelevantTable_UnitTest
1.303 +
1.304 +
1.305 +// ______________________________________________________________________________
1.306 +//
1.307 +/**
1.308 + @internalComponent
1.309 + Comments : Unit Test for LargeTable on StringPool, the class under test.
1.310 + */
1.311 +class CStringPool_LongTable_UnitTest : public CUnitTest
1.312 + {
1.313 +public:
1.314 + /**
1.315 + @fn NewL(CDataLogger& aDataLogger,
1.316 + MUnitTestObserver& aObserver)
1.317 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.318 + cleanup stack.
1.319 + Error Condition : Leaves with the error code.
1.320 + @leave KErrNoMemory
1.321 + @since 6.0
1.322 + @param aDataLogger The output logging object.
1.323 + @param aObserver The observer of this UnitTest.
1.324 + @return CStringPool_LongTable_UnitTest* The constructed object.
1.325 + @pre None.
1.326 + @post CStringPool_LongTable_UnitTest is fully constructed, and initialised.
1.327 + */
1.328 + static CStringPool_LongTable_UnitTest* NewL(CDataLogger& aDataLogger,
1.329 + MUnitTestObserver& aObserver);
1.330 +
1.331 + /**
1.332 + @fn RunError(TInt aError)
1.333 + Intended Usage : Intercept the panic caused by a RunL leave,
1.334 + to restore the CStringPool_LargeTable_UnitTest
1.335 + object to a sensible state.
1.336 + (called by the Active Scheduler immediately before the Panic).
1.337 + Error Condition : @see CUnitTest::RunError().
1.338 + @since 6.0
1.339 + @return TInt KErrNone if cleanup successful, otherwise
1.340 + @see CUnitTest::RunError()
1.341 + @pre CStringPool_LongTable_UnitTest is fully constructed, and initialised.
1.342 + @post The object has been restored to a sensible state.
1.343 + */
1.344 + inline TInt RunError(TInt aError);
1.345 +
1.346 + /**
1.347 + @fn ~CStringPool_LongTable_UnitTest()
1.348 + Intended Usage : Standard Destructor.
1.349 + Error Condition : None.
1.350 + @since 6.0
1.351 + @pre CStringPool_LongTable_UnitTest is fully constructed.
1.352 + @post CStringPool_LongTable_UnitTest is fully destroyed.
1.353 + */
1.354 + ~CStringPool_LongTable_UnitTest();
1.355 +
1.356 +private:
1.357 + /**
1.358 + @fn CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
1.359 + MUnitTestObserver& aObserver)
1.360 + Intended Usage : Default constructor.
1.361 + Error Condition : None.
1.362 + @since 6.0
1.363 + @param aDataLogger The output logging object.
1.364 + @param aObserver The observer of this UnitTest.
1.365 + @param aStateAccessor WhiteBox state access to the StringPool class.
1.366 + @pre None.
1.367 + @post CStringPool_LongTable_UnitTest is fully constructed.
1.368 + */
1.369 + inline CStringPool_LongTable_UnitTest(CDataLogger& aDataLogger,
1.370 + MUnitTestObserver& aObserver);
1.371 +
1.372 + /**
1.373 + @fn void ConstructL()
1.374 + Intended Usage : Second phase of safe two phase construction,
1.375 + to complete the object initialisation.
1.376 + Error Condition : Leaves with an error code.
1.377 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.378 + @since 6.0
1.379 + @return None
1.380 + @pre CStringPool_LongTable_UnitTest is fully constructed.
1.381 + @post CStringPool_LongTable_UnitTest is fully initialised.
1.382 + */
1.383 + void ConstructL();
1.384 +
1.385 + /**
1.386 + The context of the Unit Test.
1.387 + i.e The StringPool class tested by this UnitTest's transitions.
1.388 + */
1.389 + CStringPool_UnitTestContext* iUTContext;
1.390 + TStringPool_StateAccessor* iStateAccessor;
1.391 + TStringPool_True_TransitionValidator* iTrueValidator;
1.392 + TStringPool_False_TransitionValidator* iFalseValidator;
1.393 + }; // CStringPool_LongTable_UnitTest
1.394 +
1.395 +// ______________________________________________________________________________
1.396 +//
1.397 +/**
1.398 + @internalComponent
1.399 +
1.400 + Comments : Unit Test for CaseSensitive on CStringPool, the class under test.
1.401 + */
1.402 +class CStringPool_CaseSensitive_UnitTest : public CUnitTest
1.403 + {
1.404 +public:
1.405 + /**
1.406 + @fn NewL(CDataLogger& aDataLogger,
1.407 + MUnitTestObserver& aObserver)
1.408 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.409 + cleanup stack.
1.410 + Error Condition : Leaves with the error code.
1.411 + @leave KErrNoMemory
1.412 + @since 7.0
1.413 + @param aDataLogger The output logging object.
1.414 + @param aObserver The observer of this UnitTest.
1.415 + @return CStringPool_CaseSensitive_UnitTest* The constructed object.
1.416 + @pre None.
1.417 + @post CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
1.418 + */
1.419 + static CStringPool_CaseSensitive_UnitTest* NewL(CDataLogger& aDataLogger,
1.420 + MUnitTestObserver& aObserver);
1.421 +
1.422 + /**
1.423 + @fn RunError(TInt aError)
1.424 + Intended Usage : Intercept the panic caused by a RunL leave,
1.425 + to restore the CStringPool_CaseSensitive_UnitTest
1.426 + object to a sensible state.
1.427 + (called by the Active Scheduler immediately before the Panic).
1.428 + Error Condition : @see CUnitTest::RunError().
1.429 + @since 7.0
1.430 + @return KErrNone if cleanup successful, otherwise
1.431 + @see CUnitTest::RunError()
1.432 + @pre CStringPool_CaseSensitive_UnitTest is fully constructed, and initialized.
1.433 + @post The object has been restored to a sensible state.
1.434 + */
1.435 + inline TInt RunError(TInt aError);
1.436 +
1.437 + /**
1.438 + @fn ~CStringPool_CaseSensitive_UnitTest()
1.439 + Intended Usage : Standard Destructor.
1.440 + Error Condition : None.
1.441 + @since 7.0
1.442 + @pre CStringPool_CaseSensitive_UnitTest is fully constructed.
1.443 + @post CStringPool_CaseSensitive_UnitTest is fully destroyed.
1.444 + */
1.445 + ~CStringPool_CaseSensitive_UnitTest();
1.446 +
1.447 +private:
1.448 + /**
1.449 + @fn CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
1.450 + MUnitTestObserver& aObserver)
1.451 + Intended Usage : Default constructor.
1.452 + Error Condition : None.
1.453 + @since 7.0
1.454 + @param aDataLogger The output logging object.
1.455 + @param aObserver The observer of this UnitTest.
1.456 + @param aStateAccessor WhiteBox state access to the CStringPool class.
1.457 + @pre None.
1.458 + @post CStringPool_CaseSensitive_UnitTest is fully constructed.
1.459 + */
1.460 + inline CStringPool_CaseSensitive_UnitTest(CDataLogger& aDataLogger,
1.461 + MUnitTestObserver& aObserver);
1.462 +
1.463 + /**
1.464 + @fn void ConstructL()
1.465 + Intended Usage : Second phase of safe two phase construction,
1.466 + to complete the object initialisation.
1.467 + Error Condition : Leaves with an error code.
1.468 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.469 + @since 7.0
1.470 + @return None
1.471 + @pre CStringPool_CaseSensitive_UnitTest is fully constructed.
1.472 + @post CStringPool_CaseSensitive_UnitTest is fully initialized.
1.473 + */
1.474 + void ConstructL();
1.475 +
1.476 + /**
1.477 + The context of the Unit Test.
1.478 + i.e The CStringPool class tested by this UnitTest's transitions.
1.479 + */
1.480 + CStringPool_UnitTestContext* iUTContext;
1.481 + TStringPool_StateAccessor* iStateAccessor;
1.482 + TStringPool_True_TransitionValidator* iTrueValidator;
1.483 + TStringPool_False_TransitionValidator* iFalseValidator;
1.484 + }; // CStringPool_CaseSensitive_UnitTest
1.485 +
1.486 +// ______________________________________________________________________________
1.487 +//
1.488 +/**
1.489 + @internalAll
1.490 +
1.491 + Comments : Unit Test for SmallTableCS on CStringPool, the class under test.
1.492 + */
1.493 +class CStringPool_ShortTableCS_UnitTest : public CUnitTest
1.494 + {
1.495 +public:
1.496 + /**
1.497 + @fn NewL(CDataLogger& aDataLogger,
1.498 + MUnitTestObserver& aObserver)
1.499 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.500 + cleanup stack.
1.501 + Error Condition : Leaves with the error code.
1.502 + @leave KErrNoMemory
1.503 + @since 7.0
1.504 + @param aDataLogger The output logging object.
1.505 + @param aObserver The observer of this UnitTest.
1.506 + @return CStringPool_ShortTableCS_UnitTest* The constructed object.
1.507 + @pre None.
1.508 + @post CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
1.509 + */
1.510 + static CStringPool_ShortTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
1.511 + MUnitTestObserver& aObserver);
1.512 +
1.513 + /**
1.514 + @fn RunError(TInt aError)
1.515 + Intended Usage : Intercept the panic caused by a RunL leave,
1.516 + to restore the CStringPool_ShortTableCS_UnitTest
1.517 + object to a sensible state.
1.518 + (called by the Active Scheduler immediately before the Panic).
1.519 + Error Condition : @see CUnitTest::RunError().
1.520 + @since 7.0
1.521 + @return KErrNone if cleanup successful, otherwise
1.522 + @see CUnitTest::RunError()
1.523 + @pre CStringPool_ShortTableCS_UnitTest is fully constructed, and initialized.
1.524 + @post The object has been restored to a sensible state.
1.525 + */
1.526 + inline TInt RunError(TInt aError);
1.527 +
1.528 + /**
1.529 + @fn ~CStringPool_ShortTableCS_UnitTest()
1.530 + Intended Usage : Standard Destructor.
1.531 + Error Condition : None.
1.532 + @since 7.0
1.533 + @pre CStringPool_ShortTableCS_UnitTest is fully constructed.
1.534 + @post CStringPool_ShortTableCS_UnitTest is fully destroyed.
1.535 + */
1.536 + ~CStringPool_ShortTableCS_UnitTest();
1.537 +
1.538 +private:
1.539 + /**
1.540 + @fn CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
1.541 + MUnitTestObserver& aObserver)
1.542 + Intended Usage : Default constructor.
1.543 + Error Condition : None.
1.544 + @since 7.0
1.545 + @param aDataLogger The output logging object.
1.546 + @param aObserver The observer of this UnitTest.
1.547 + @param aStateAccessor WhiteBox state access to the CStringPool class.
1.548 + @pre None.
1.549 + @post CStringPool_ShortTableCS_UnitTest is fully constructed.
1.550 + */
1.551 + inline CStringPool_ShortTableCS_UnitTest(CDataLogger& aDataLogger,
1.552 + MUnitTestObserver& aObserver);
1.553 +
1.554 + /**
1.555 + @fn void ConstructL()
1.556 + Intended Usage : Second phase of safe two phase construction,
1.557 + to complete the object initialisation.
1.558 + Error Condition : Leaves with an error code.
1.559 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.560 + @since 7.0
1.561 + @return None
1.562 + @pre CStringPool_ShortTableCS_UnitTest is fully constructed.
1.563 + @post CStringPool_ShortTableCS_UnitTest is fully initialized.
1.564 + */
1.565 + void ConstructL();
1.566 +
1.567 + /**
1.568 + The context of the Unit Test.
1.569 + i.e The CStringPool class tested by this UnitTest's transitions.
1.570 + */
1.571 + CStringPool_UnitTestContext* iUTContext;
1.572 + TStringPool_StateAccessor* iStateAccessor;
1.573 + TStringPool_True_TransitionValidator* iTrueValidator;
1.574 + TStringPool_False_TransitionValidator* iFalseValidator;
1.575 + }; // CStringPool_ShortTableCS_UnitTest
1.576 +
1.577 +// ______________________________________________________________________________
1.578 +//
1.579 +/**
1.580 + @internalAll
1.581 +
1.582 + Comments : Unit Test for IrrelevantTableCS on CStringPool, the class under test.
1.583 + */
1.584 +class CStringPool_IrrelevantTableCS_UnitTest : public CUnitTest
1.585 + {
1.586 +public:
1.587 + /**
1.588 + @fn NewL(CDataLogger& aDataLogger,
1.589 + MUnitTestObserver& aObserver)
1.590 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.591 + cleanup stack.
1.592 + Error Condition : Leaves with the error code.
1.593 + @leave KErrNoMemory
1.594 + @since 7.0
1.595 + @param aDataLogger The output logging object.
1.596 + @param aObserver The observer of this UnitTest.
1.597 + @return CStringPool_IrrelevantTableCS_UnitTest* The constructed object.
1.598 + @pre None.
1.599 + @post CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
1.600 + */
1.601 + static CStringPool_IrrelevantTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
1.602 + MUnitTestObserver& aObserver);
1.603 +
1.604 + /**
1.605 + @fn RunError(TInt aError)
1.606 + Intended Usage : Intercept the panic caused by a RunL leave,
1.607 + to restore the CStringPool_IrrelevantTableCS_UnitTest
1.608 + object to a sensible state.
1.609 + (called by the Active Scheduler immediately before the Panic).
1.610 + Error Condition : @see CUnitTest::RunError().
1.611 + @since 7.0
1.612 + @return KErrNone if cleanup successful, otherwise
1.613 + @see CUnitTest::RunError()
1.614 + @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed, and initialized.
1.615 + @post The object has been restored to a sensible state.
1.616 + */
1.617 + inline TInt RunError(TInt aError);
1.618 +
1.619 + /**
1.620 + @fn ~CStringPool_IrrelevantTableCS_UnitTest()
1.621 + Intended Usage : Standard Destructor.
1.622 + Error Condition : None.
1.623 + @since 7.0
1.624 + @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
1.625 + @post CStringPool_IrrelevantTableCS_UnitTest is fully destroyed.
1.626 + */
1.627 + ~CStringPool_IrrelevantTableCS_UnitTest();
1.628 +
1.629 +private:
1.630 + /**
1.631 + @fn CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
1.632 + MUnitTestObserver& aObserver)
1.633 + Intended Usage : Default constructor.
1.634 + Error Condition : None.
1.635 + @since 7.0
1.636 + @param aDataLogger The output logging object.
1.637 + @param aObserver The observer of this UnitTest.
1.638 + @param aStateAccessor WhiteBox state access to the CStringPool class.
1.639 + @pre None.
1.640 + @post CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
1.641 + */
1.642 + inline CStringPool_IrrelevantTableCS_UnitTest(CDataLogger& aDataLogger,
1.643 + MUnitTestObserver& aObserver);
1.644 +
1.645 + /**
1.646 + @fn void ConstructL()
1.647 + Intended Usage : Second phase of safe two phase construction,
1.648 + to complete the object initialisation.
1.649 + Error Condition : Leaves with an error code.
1.650 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.651 + @since 7.0
1.652 + @return None
1.653 + @pre CStringPool_IrrelevantTableCS_UnitTest is fully constructed.
1.654 + @post CStringPool_IrrelevantTableCS_UnitTest is fully initialized.
1.655 + */
1.656 + void ConstructL();
1.657 +
1.658 + CStringPool_UnitTestContext* iUTContext;
1.659 + TStringPool_StateAccessor* iStateAccessor;
1.660 + TStringPool_True_TransitionValidator* iTrueValidator;
1.661 + TStringPool_False_TransitionValidator* iFalseValidator;
1.662 + }; // CStringPool_IrrelevantTableCS_UnitTest
1.663 +
1.664 +// ______________________________________________________________________________
1.665 +//
1.666 +/**
1.667 + @internalAll
1.668 +
1.669 + Comments : Unit Test for LargeCS on CStringPool, the class under test.
1.670 + */
1.671 +class CStringPool_LongTableCS_UnitTest : public CUnitTest
1.672 + {
1.673 +public:
1.674 + /**
1.675 + @fn NewL(CDataLogger& aDataLogger,
1.676 + MUnitTestObserver& aObserver)
1.677 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.678 + cleanup stack.
1.679 + Error Condition : Leaves with the error code.
1.680 + @leave KErrNoMemory
1.681 + @since 7.0
1.682 + @param aDataLogger The output logging object.
1.683 + @param aObserver The observer of this UnitTest.
1.684 + @return CStringPool_LongTableCS_UnitTest* The constructed object.
1.685 + @pre None.
1.686 + @post CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
1.687 + */
1.688 + static CStringPool_LongTableCS_UnitTest* NewL(CDataLogger& aDataLogger,
1.689 + MUnitTestObserver& aObserver);
1.690 +
1.691 + /**
1.692 + @fn RunError(TInt aError)
1.693 + Intended Usage : Intercept the panic caused by a RunL leave,
1.694 + to restore the CStringPool_LongTableCS_UnitTest
1.695 + object to a sensible state.
1.696 + (called by the Active Scheduler immediately before the Panic).
1.697 + Error Condition : @see CUnitTest::RunError().
1.698 + @since 7.0
1.699 + @return KErrNone if cleanup successful, otherwise
1.700 + @see CUnitTest::RunError()
1.701 + @pre CStringPool_LongTableCS_UnitTest is fully constructed, and initialized.
1.702 + @post The object has been restored to a sensible state.
1.703 + */
1.704 + inline TInt RunError(TInt aError);
1.705 +
1.706 + /**
1.707 + @fn ~CStringPool_LongTableCS_UnitTest()
1.708 + Intended Usage : Standard Destructor.
1.709 + Error Condition : None.
1.710 + @since 7.0
1.711 + @pre CStringPool_LongTableCS_UnitTest is fully constructed.
1.712 + @post CStringPool_LongTableCS_UnitTest is fully destroyed.
1.713 + */
1.714 + ~CStringPool_LongTableCS_UnitTest();
1.715 +
1.716 +private:
1.717 + /**
1.718 + @fn CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
1.719 + MUnitTestObserver& aObserver)
1.720 + Intended Usage : Default constructor.
1.721 + Error Condition : None.
1.722 + @since 7.0
1.723 + @param aDataLogger The output logging object.
1.724 + @param aObserver The observer of this UnitTest.
1.725 + @param aStateAccessor WhiteBox state access to the CStringPool class.
1.726 + @pre None.
1.727 + @post CStringPool_LongTableCS_UnitTest is fully constructed.
1.728 + */
1.729 + inline CStringPool_LongTableCS_UnitTest(CDataLogger& aDataLogger,
1.730 + MUnitTestObserver& aObserver);
1.731 +
1.732 + /**
1.733 + @fn void ConstructL()
1.734 + Intended Usage : Second phase of safe two phase construction,
1.735 + to complete the object initialisation.
1.736 + Error Condition : Leaves with an error code.
1.737 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.738 + @since 7.0
1.739 + @return None
1.740 + @pre CStringPool_LongTableCS_UnitTest is fully constructed.
1.741 + @post CStringPool_LongTableCS_UnitTest is fully initialized.
1.742 + */
1.743 + void ConstructL();
1.744 +
1.745 + /**
1.746 + The context of the Unit Test.
1.747 + i.e The CStringPool class tested by this UnitTest's transitions.
1.748 + */
1.749 + CStringPool_UnitTestContext* iUTContext;
1.750 + TStringPool_StateAccessor* iStateAccessor;
1.751 + TStringPool_True_TransitionValidator* iTrueValidator;
1.752 + TStringPool_False_TransitionValidator* iFalseValidator;
1.753 + }; // CStringPool_LongTableCS_UnitTest
1.754 +
1.755 +// ______________________________________________________________________________
1.756 +//
1.757 +/**
1.758 + @internalAll
1.759 +
1.760 + Comments : Unit Test for MultipleTableShortCI on RStringPool, the class under test.
1.761 + */
1.762 +class CStringPool_MultipleTableShortCI_UnitTest : public CUnitTest
1.763 + {
1.764 +public:
1.765 + /**
1.766 + @fn NewL(CDataLogger& aDataLogger,
1.767 + MUnitTestObserver& aObserver)
1.768 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.769 + cleanup stack.
1.770 + Error Condition : Leaves with the error code.
1.771 + @leave KErrNoMemory
1.772 + @since 7.0
1.773 + @param aDataLogger The output logging object.
1.774 + @param aObserver The observer of this UnitTest.
1.775 + @return CStringPool_MultipleTableShortCI_UnitTest* The constructed object.
1.776 + @pre None.
1.777 + @post CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
1.778 + */
1.779 + static CStringPool_MultipleTableShortCI_UnitTest* NewL(CDataLogger& aDataLogger,
1.780 + MUnitTestObserver& aObserver);
1.781 +
1.782 + /**
1.783 + @fn RunError(TInt aError)
1.784 + Intended Usage : Intercept the panic caused by a RunL leave,
1.785 + to restore the CStringPool_MultipleTableShortCI_UnitTest
1.786 + object to a sensible state.
1.787 + (called by the Active Scheduler immediately before the Panic).
1.788 + Error Condition : @see CUnitTest::RunError().
1.789 + @since 7.0
1.790 + @return KErrNone if cleanup successful, otherwise
1.791 + @see CUnitTest::RunError()
1.792 + @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed, and initialized.
1.793 + @post The object has been restored to a sensible state.
1.794 + */
1.795 + inline TInt RunError(TInt aError);
1.796 +
1.797 + /**
1.798 + @fn ~CStringPool_MultipleTableShortCI_UnitTest()
1.799 + Intended Usage : Standard Destructor.
1.800 + Error Condition : None.
1.801 + @since 7.0
1.802 + @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
1.803 + @post CStringPool_MultipleTableShortCI_UnitTest is fully destroyed.
1.804 + */
1.805 + ~CStringPool_MultipleTableShortCI_UnitTest();
1.806 +
1.807 +private:
1.808 + /**
1.809 + @fn CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
1.810 + MUnitTestObserver& aObserver)
1.811 + Intended Usage : Default constructor.
1.812 + Error Condition : None.
1.813 + @since 7.0
1.814 + @param aDataLogger The output logging object.
1.815 + @param aObserver The observer of this UnitTest.
1.816 + @param aStateAccessor WhiteBox state access to the RStringPool class.
1.817 + @pre None.
1.818 + @post CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
1.819 + */
1.820 + inline CStringPool_MultipleTableShortCI_UnitTest(CDataLogger& aDataLogger,
1.821 + MUnitTestObserver& aObserver);
1.822 +
1.823 + /**
1.824 + @fn void ConstructL()
1.825 + Intended Usage : Second phase of safe two phase construction,
1.826 + to complete the object initialisation.
1.827 + Error Condition : Leaves with an error code.
1.828 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.829 + @since 7.0
1.830 + @return None
1.831 + @pre CStringPool_MultipleTableShortCI_UnitTest is fully constructed.
1.832 + @post CStringPool_MultipleTableShortCI_UnitTest is fully initialized.
1.833 + */
1.834 + void ConstructL();
1.835 +
1.836 + /**
1.837 + The context of the Unit Test.
1.838 + i.e The RStringPool class tested by this UnitTest's transitions.
1.839 + */
1.840 + CStringPool_UnitTestContext* iUTContext;
1.841 + TStringPool_StateAccessor* iStateAccessor;
1.842 + TStringPool_True_TransitionValidator* iTrueValidator;
1.843 + TStringPool_False_TransitionValidator* iFalseValidator;
1.844 + }; // CStringPool_MultipleTableShortCI_UnitTest
1.845 +
1.846 +
1.847 +// ______________________________________________________________________________
1.848 +//
1.849 +/**
1.850 + @internalAll
1.851 +
1.852 + Comments : Unit Test for MultipleTableShortCS on RStringPool, the class under test.
1.853 + */
1.854 +class CStringPool_MultipleTableShortCS_UnitTest : public CUnitTest
1.855 + {
1.856 +public:
1.857 + /**
1.858 + @fn NewL(CDataLogger& aDataLogger,
1.859 + MUnitTestObserver& aObserver)
1.860 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.861 + cleanup stack.
1.862 + Error Condition : Leaves with the error code.
1.863 + @leave KErrNoMemory
1.864 + @since 7.0
1.865 + @param aDataLogger The output logging object.
1.866 + @param aObserver The observer of this UnitTest.
1.867 + @return CStringPool_MultipleTableShortCS_UnitTest* The constructed object.
1.868 + @pre None.
1.869 + @post CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
1.870 + */
1.871 + static CStringPool_MultipleTableShortCS_UnitTest* NewL(CDataLogger& aDataLogger,
1.872 + MUnitTestObserver& aObserver);
1.873 +
1.874 + /**
1.875 + @fn RunError(TInt aError)
1.876 + Intended Usage : Intercept the panic caused by a RunL leave,
1.877 + to restore the CStringPool_MultipleTableShortCS_UnitTest
1.878 + object to a sensible state.
1.879 + (called by the Active Scheduler immediately before the Panic).
1.880 + Error Condition : @see CUnitTest::RunError().
1.881 + @since 7.0
1.882 + @return KErrNone if cleanup successful, otherwise
1.883 + @see CUnitTest::RunError()
1.884 + @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed, and initialized.
1.885 + @post The object has been restored to a sensible state.
1.886 + */
1.887 + inline TInt RunError(TInt aError);
1.888 +
1.889 + /**
1.890 + @fn ~CStringPool_MultipleTableShortCS_UnitTest()
1.891 + Intended Usage : Standard Destructor.
1.892 + Error Condition : None.
1.893 + @since 7.0
1.894 + @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
1.895 + @post CStringPool_MultipleTableShortCS_UnitTest is fully destroyed.
1.896 + */
1.897 + ~CStringPool_MultipleTableShortCS_UnitTest();
1.898 +
1.899 +private:
1.900 + /**
1.901 + @fn CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
1.902 + MUnitTestObserver& aObserver)
1.903 + Intended Usage : Default constructor.
1.904 + Error Condition : None.
1.905 + @since 7.0
1.906 + @param aDataLogger The output logging object.
1.907 + @param aObserver The observer of this UnitTest.
1.908 + @param aStateAccessor WhiteBox state access to the RStringPool class.
1.909 + @pre None.
1.910 + @post CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
1.911 + */
1.912 + inline CStringPool_MultipleTableShortCS_UnitTest(CDataLogger& aDataLogger,
1.913 + MUnitTestObserver& aObserver);
1.914 +
1.915 + /**
1.916 + @fn void ConstructL()
1.917 + Intended Usage : Second phase of safe two phase construction,
1.918 + to complete the object initialisation.
1.919 + Error Condition : Leaves with an error code.
1.920 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.921 + @since 7.0
1.922 + @return None
1.923 + @pre CStringPool_MultipleTableShortCS_UnitTest is fully constructed.
1.924 + @post CStringPool_MultipleTableShortCS_UnitTest is fully initialized.
1.925 + */
1.926 + void ConstructL();
1.927 +
1.928 + /**
1.929 + The context of the Unit Test.
1.930 + i.e The RStringPool class tested by this UnitTest's transitions.
1.931 + */
1.932 + CStringPool_UnitTestContext* iUTContext;
1.933 + TStringPool_StateAccessor* iStateAccessor;
1.934 + TStringPool_True_TransitionValidator* iTrueValidator;
1.935 + TStringPool_False_TransitionValidator* iFalseValidator;
1.936 + }; // CStringPool_MultipleTableShortCS_UnitTest
1.937 +
1.938 +
1.939 +#endif // __STRINGPOOLUNITTEST_H__