sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The definitions of the transition classes upon the RStringPool class methods. sl@0: // sl@0: // sl@0: sl@0: #ifndef __STRINGPOOLTRANSITIONS_H__ sl@0: #define __STRINGPOOLTRANSITIONS_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "StringPoolStateAccessor.h" sl@0: #include sl@0: sl@0: // use the typedef that has been commented out if you don't want to perform memory leak tests sl@0: typedef CTransition CTransitionType; sl@0: //typedef CLeakTestTransition CTransitionType; sl@0: sl@0: class ExtObj : public MStringPoolCloseCallBack sl@0: { sl@0: public: sl@0: void StringPoolClosing() sl@0: { sl@0: a= 1; sl@0: } sl@0: TBool a; sl@0: }; sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Provide all the RStringPool specific sl@0: parameters and behaviour on the RStringPool sl@0: test class for a transition. sl@0: */ sl@0: class CStringPool_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest's Transitions. sl@0: @param aStateAccessor WhiteBox state access to the RStringPool class under test. sl@0: @pre None. sl@0: @post CStringPool_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CStringPool_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver); sl@0: sl@0: /** sl@0: @fn ~CStringPool_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 6.0 sl@0: @pre CStringPool_UnitTestContext is fully constructed. sl@0: @post CStringPool_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CStringPool_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: RStringPool iStringPool; sl@0: sl@0: // Various strings. a and b are different strings. c is a temporary. sl@0: // d is the same as a, but separately created sl@0: // F denotes case insensitiveness; T denotes table strings sl@0: RString iA, iB, iC, iD, iE, iF, iTE, iUndeletable_EX, iUndeletable_A; sl@0: RStringF iFA, iFB, iFC, iFD, iFE, iFF, iTFE, iEmptyOne, iFAString, iFADuplicateString; sl@0: sl@0: TPtrC8 iADes, iBDes, iDDes, iFADes, iFBDes, iFDDes; sl@0: TInt iInt, iFint,iNotFound; sl@0: TStringTable iTestTable; sl@0: TStringTable iTestTable2; sl@0: TStringTable iTestTable3; sl@0: TStringTable iTestTable4; sl@0: ExtObj iMyExtObj,iMyExtObj2,iMyExtObj3; sl@0: TInt cbCount; sl@0: sl@0: sl@0: sl@0: TInt iIndex1, iIndex2, iIndex3, iIndex4; sl@0: sl@0: // The result of boolean comparisons sl@0: TBool iResult; sl@0: }; // CStringPool_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the RStringPool::NewL method. sl@0: */ sl@0: class CStringPool_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_NewL_Transition is fully constructed. sl@0: */ sl@0: CStringPool_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the RStringPool::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see RStringPool::NewL) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_NewL_Transition is fully constructed. sl@0: @post No change in the CStringPool_NewL_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see RStringPool::NewL post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_NewL_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the RStringPool::Dtor method. sl@0: */ sl@0: class CStringPool_Dtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Dtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the RStringPool::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see RStringPool::Dtor) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_Dtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_Dtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see RStringPool::Dtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Dtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Dtor_Transition sl@0: sl@0: // Add additional Transition class definitions here... sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the RStringPool::AeqA method. sl@0: */ sl@0: class CStringPool_AeqA_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRStringPool_AeqA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRStringPool_AeqA_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AeqA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the RStringPool::AeqA method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see RStringPool::AeqA) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CRStringPool_AeqA_Transition is fully constructed. sl@0: @post No change in the CRStringPool_AeqA_Transition apart sl@0: from iRStringPool, which may have changed state. sl@0: (@see RStringPool::AeqA post-condition) for iRStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CRStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CRStringPool_UnitTestContext. sl@0: @post No change in the CRStringPool_AeqA_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CRStringPool_AeqA_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneA method. sl@0: */ sl@0: class CStringPool_AneA_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_AneA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_AneA_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AneA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneA method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneA) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_AneA_Transition is fully constructed. sl@0: @post No change in the CStringPool_AneA_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneA post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AneA_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_AneA_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AeqB method. sl@0: */ sl@0: class CStringPool_AeqB_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_AeqB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_AeqB_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AeqB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AeqB method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AeqB) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_AeqB_Transition is fully constructed. sl@0: @post No change in the CStringPool_AeqB_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AeqB post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AeqB_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_AeqB_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneB method. sl@0: */ sl@0: class CStringPool_AneB_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_AneB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_AneB_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AneB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneB method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneB) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_AneB_Transition is fully constructed. sl@0: @post No change in the CStringPool_AneB_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneB post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AneB_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_AneB_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AeqD method. sl@0: */ sl@0: class CStringPool_AeqD_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_AeqD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_AeqD_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AeqD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AeqD method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AeqD) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_AeqD_Transition is fully constructed. sl@0: @post No change in the CStringPool_AeqD_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AeqD post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AeqD_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_AeqD_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneD method. sl@0: */ sl@0: class CStringPool_AneD_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_AneD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_AneD_Transition is fully constructed. sl@0: */ sl@0: CStringPool_AneD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneD method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneD) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_AneD_Transition is fully constructed. sl@0: @post No change in the CStringPool_AneD_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneD post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AneD_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_AneD_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Desc method. sl@0: */ sl@0: class CStringPool_Desc_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_Desc_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Desc_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Desc_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Desc method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Desc) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_Desc_Transition is fully constructed. sl@0: @post No change in the CStringPool_Desc_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Desc post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Desc_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Desc_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Copy method. sl@0: */ sl@0: class CStringPool_Copy_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_Copy_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Copy_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Copy_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Copy method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Copy) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_Copy_Transition is fully constructed. sl@0: @post No change in the CStringPool_Copy_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Copy post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Copy_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Copy_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::CDesC method. sl@0: */ sl@0: class CStringPool_CDesC_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_CDesC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_CDesC_Transition is fully constructed. sl@0: */ sl@0: CStringPool_CDesC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::CDesC method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::CDesC) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_CDesC_Transition is fully constructed. sl@0: @post No change in the CStringPool_CDesC_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::CDesC post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_CDesC_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_CDesC_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Close method. sl@0: */ sl@0: class CStringPool_Close_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_Close_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Close_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Close_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Close method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Close) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_Close_Transition is fully constructed. sl@0: @post No change in the CStringPool_Close_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Close post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Close_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Close_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Int method. sl@0: */ sl@0: class CStringPool_Int_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_Int_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Int_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Int_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Int method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Int) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_Int_Transition is fully constructed. sl@0: @post No change in the CStringPool_Int_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Int post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Int_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Int_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::StringToken method. sl@0: */ sl@0: class CStringPool_StringToken_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_StringToken_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_StringToken_Transition is fully constructed. sl@0: */ sl@0: CStringPool_StringToken_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::StringToken method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::StringToken) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_StringToken_Transition is fully constructed. sl@0: @post No change in the CStringPool_StringToken_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::StringToken post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_StringToken_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_StringToken_Transition sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the RStringPool::AeqA method. sl@0: */ sl@0: class CStringPool_FAeqA_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CRStringPool_AeqA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CRStringPool_AeqA_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAeqA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the RStringPool::AeqA method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see RStringPool::AeqA) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CRStringPool_AeqA_Transition is fully constructed. sl@0: @post No change in the CRStringPool_AeqA_Transition apart sl@0: from iRStringPool, which may have changed state. sl@0: (@see RStringPool::AeqA post-condition) for iRStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CRStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CRStringPool_UnitTestContext. sl@0: @post No change in the CRStringPool_AeqA_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CRStringPool_AeqA_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneA method. sl@0: */ sl@0: class CStringPool_FAneA_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FAneA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FAneA_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAneA_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneA method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneA) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FAneA_Transition is fully constructed. sl@0: @post No change in the CStringPool_FAneA_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneA post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_FAneA_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FAneA_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AeqB method. sl@0: */ sl@0: class CStringPool_FAeqB_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FAeqB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FAeqB_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAeqB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AeqB method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AeqB) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FAeqB_Transition is fully constructed. sl@0: @post No change in the CStringPool_FAeqB_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AeqB post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AeqB_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FAeqB_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneB method. sl@0: */ sl@0: class CStringPool_FAneB_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FAneB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FAneB_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAneB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneB method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneB) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FAneB_Transition is fully constructed. sl@0: @post No change in the CStringPool_FAneB_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneB post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AneB_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FAneB_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AeqD method. sl@0: */ sl@0: class CStringPool_FAeqD_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FAeqD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FAeqD_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAeqD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AeqD method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AeqD) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FAeqD_Transition is fully constructed. sl@0: @post No change in the CStringPool_FAeqD_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AeqD post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AeqD_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FAeqD_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::AneD method. sl@0: */ sl@0: class CStringPool_FAneD_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FAneD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FAneD_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FAneD_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::AneD method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::AneD) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FAneD_Transition is fully constructed. sl@0: @post No change in the CStringPool_FAneD_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::AneD post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_AneD_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FAneD_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Desc method. sl@0: */ sl@0: class CStringPool_FDesc_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FDesc_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FDesc_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FDesc_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Desc method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Desc) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FDesc_Transition is fully constructed. sl@0: @post No change in the CStringPool_FDesc_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Desc post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_FUnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Desc_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FDesc_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Copy method. sl@0: */ sl@0: class CStringPool_FCopy_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FCopy_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FCopy_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FCopy_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Copy method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Copy) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FCopy_Transition is fully constructed. sl@0: @post No change in the CStringPool_FCopy_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Copy post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Copy_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FCopy_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::CDesC method. sl@0: */ sl@0: class CStringPool_FCDesC_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FCDesC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FCDesC_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FCDesC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::CDesC method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::CDesC) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FCDesC_Transition is fully constructed. sl@0: @post No change in the CStringPool_FCDesC_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::CDesC post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_CDesC_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FCDesC_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Close method. sl@0: */ sl@0: class CStringPool_FClose_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FClose_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FClose_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FClose_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Close method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Close) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FClose_Transition is fully constructed. sl@0: @post No change in the CStringPool_FClose_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Close post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_FUnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Close_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FClose_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::Int method. sl@0: */ sl@0: class CStringPool_FInt_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FInt_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FInt_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FInt_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::Int method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::Int) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FInt_Transition is fully constructed. sl@0: @post No change in the CStringPool_FInt_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::Int post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_FUnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Int_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FInt_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::StringToken method. sl@0: */ sl@0: class CStringPool_FStringToken_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_FStringToken_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_FStringToken_Transition is fully constructed. sl@0: */ sl@0: CStringPool_FStringToken_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::StringToken method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::StringToken) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_FStringToken_Transition is fully constructed. sl@0: @post No change in the CStringPool_FStringToken_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::StringToken post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_FUnitTestContext sl@0: @pre iUTContext is a valid CStringPool_FUnitTestContext. sl@0: @post No change in the CStringPool_StringToken_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_FStringToken_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::ShortCtor method. sl@0: */ sl@0: class CStringPool_ShortCtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_ShortCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_ShortCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_ShortCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::SmallCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::SmallCtor) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_ShortCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_ShortCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::SmallCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_ShortCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_ShortCtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::IrrelevantCtor method. sl@0: */ sl@0: class CStringPool_IrrelevantCtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_IrrelevantCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_IrrelevantCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_IrrelevantCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::IrrelevantCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::IrrelevantCtor) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_IrrelevantCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_IrrelevantCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::IrrelevantCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_IrrelevantCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_IrrelevantCtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Transition test of the StringPool::LongCtor method. sl@0: */ sl@0: class CStringPool_LongCtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_LongCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_LongCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_LongCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::LongCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::LongCtor) sl@0: @since 6.0 sl@0: @return None sl@0: @pre CStringPool_LongCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_LongCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::LongCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 6.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_LongCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_LongCtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::StringF_Index_Table method. sl@0: */ sl@0: class CStringPool_StringF_Index_Table_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_StringF_Index_Table_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_StringF_Index_Table_Transition is fully constructed. sl@0: */ sl@0: CStringPool_StringF_Index_Table_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::StringF_Index_Table method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::StringF_Index_Table) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_StringF_Index_Table_Transition is fully constructed. sl@0: @post No change in the CStringPool_StringF_Index_Table_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::StringF_Index_Table post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_StringF_Index_Table_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_StringF_Index_Table_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::shortCSCtor method. sl@0: */ sl@0: class CStringPool_ShortCSCtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_shortCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_shortCSCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_ShortCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::shortCSCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::shortCSCtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_shortCSCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_shortCSCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::shortCSCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_shortCSCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_ShortCSCtor_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::String_Index_Table method. sl@0: */ sl@0: class CStringPool_String_Index_Table_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_String_Index_Table_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_String_Index_Table_Transition is fully constructed. sl@0: */ sl@0: CStringPool_String_Index_Table_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::String_Index_Table method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::String_Index_Table) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_String_Index_Table_Transition is fully constructed. sl@0: @post No change in the CStringPool_String_Index_Table_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::String_Index_Table post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_String_Index_Table_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_String_Index_Table_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::IrrelevantCSCtor method. sl@0: */ sl@0: class CStringPool_IrrelevantCSCtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_IrrelevantCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_IrrelevantCSCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_IrrelevantCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::IrrelevantCSCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::IrrelevantCSCtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_IrrelevantCSCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_IrrelevantCSCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::IrrelevantCSCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_IrrelevantCSCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_IrrelevantCSCtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::LargeCSCtor method. sl@0: */ sl@0: class CStringPool_LargeCSCtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_LargeCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_LargeCSCtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_LargeCSCtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::LargeCSCtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::LargeCSCtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_LargeCSCtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_LargeCSCtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::LargeCSCtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_LargeCSCtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_LargeCSCtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::ShortCtor_CB method. sl@0: */ sl@0: class CStringPool_Short_CB_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: static TInt Test(); sl@0: /** sl@0: @fn CStringPool_Short_CB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_Short_CB_Transition is fully constructed. sl@0: */ sl@0: CStringPool_Short_CB_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::ShortCtor_CB method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::ShortCtor_CB) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_Short_CB_Transition is fully constructed. sl@0: @post No change in the CStringPool_ShortCtor_CB_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::ShortCtor_CB post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_Short_CB_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_Short_CB_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleTableCICtor method. sl@0: */ sl@0: class CStringPool_MultipleTableCICtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleTableCICtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleTableCICtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleTableCICtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleTableCICtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleTableCICtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleTableCICtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleTableCICtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleTableCICtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleTableCICtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleTableCICtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MutlipleCICeqC method. sl@0: */ sl@0: class CStringPool_MutlipleCICeqC_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MutlipleCICeqC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MutlipleCICeqC_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MutlipleCICeqC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MutlipleCICeqC method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MutlipleCICeqC) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MutlipleCICeqC_Transition is fully constructed. sl@0: @post No change in the CStringPool_MutlipleCICeqC_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MutlipleCICeqC post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MutlipleCICeqC_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MutlipleCICeqC_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCIStringToIndex method. sl@0: */ sl@0: class CStringPool_MultipleCIStringToIndex_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCIStringToIndex_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCIStringToIndex_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCIStringToIndex_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCIStringToIndex method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCIStringToIndex) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCIStringToIndex_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCIStringToIndex_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCIStringToIndex post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCIStringToIndex_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCIStringToIndex_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCIDynamicString method. sl@0: */ sl@0: class CStringPool_MultipleCIDynamicString_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCIDynamicString_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCIDynamicString_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCIDynamicString_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCIDynamicString method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCIDynamicString) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCIDynamicString_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCIDynamicString_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCIDynamicString post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCIDynamicString_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCIDynamicString_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCIIndexToStringDynamic method. sl@0: */ sl@0: class CStringPool_MultipleCIIndexToStringDynamic_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCIIndexToStringDynamic_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCIIndexToStringDynamic_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCIIndexToStringDynamic_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCIIndexToStringDynamic method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCIIndexToStringDynamic) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCIIndexToStringDynamic_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCIIndexToStringDynamic_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCIIndexToStringDynamic post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCIIndexToStringDynamic_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCIIndexToStringDynamic_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MutlipleCSCeqC method. sl@0: */ sl@0: class CStringPool_MutlipleCSCeqC_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MutlipleCSCeqC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MutlipleCSCeqC_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MutlipleCSCeqC_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MutlipleCSCeqC method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MutlipleCSCeqC) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MutlipleCSCeqC_Transition is fully constructed. sl@0: @post No change in the CStringPool_MutlipleCSCeqC_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MutlipleCSCeqC post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MutlipleCSCeqC_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MutlipleCSCeqC_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCSStringToIndex method. sl@0: */ sl@0: class CStringPool_MultipleCSStringToIndex_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCSStringToIndex_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCSStringToIndex_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCSStringToIndex_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCSStringToIndex method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCSStringToIndex) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCSStringToIndex_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCSStringToIndex_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCSStringToIndex post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCSStringToIndex_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCSStringToIndex_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCSDynamicString method. sl@0: */ sl@0: class CStringPool_MultipleCSDynamicString_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCSDynamicString_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCSDynamicString_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCSDynamicString_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCSDynamicString method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCSDynamicString) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCSDynamicString_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCSDynamicString_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCSDynamicString post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCSDynamicString_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCSDynamicString_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleCSIndexToStringDynamic method. sl@0: */ sl@0: class CStringPool_MultipleCSIndexToStringDynamic_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleCSIndexToStringDynamic_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleCSIndexToStringDynamic_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleCSIndexToStringDynamic_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleCSIndexToStringDynamic method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleCSIndexToStringDynamic) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleCSIndexToStringDynamic_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleCSIndexToStringDynamic_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleCSIndexToStringDynamic post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleCSIndexToStringDynamic_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleCSIndexToStringDynamic_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the StringPool::MultipleTableDtor method. sl@0: */ sl@0: class CStringPool_MultipleTableDtor_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_MultipleTableDtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_MultipleTableDtor_Transition is fully constructed. sl@0: */ sl@0: CStringPool_MultipleTableDtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the StringPool::MultipleTableDtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see StringPool::MultipleTableDtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_MultipleTableDtor_Transition is fully constructed. sl@0: @post No change in the CStringPool_MultipleTableDtor_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see StringPool::MultipleTableDtor post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_MultipleTableDtor_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_MultipleTableDtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::BEU55DJG3 method. sl@0: */ sl@0: class CStringPool_BEU55DJG3_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_BEU55DJG3_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_BEU55DJG3_Transition is fully constructed. sl@0: */ sl@0: CStringPool_BEU55DJG3_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::BEU55DJG3 method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::BEU55DJG3) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_BEU55DJG3_Transition is fully constructed. sl@0: @post No change in the CStringPool_BEU55DJG3_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::BEU55DJG3 post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_BEU55DJG3_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_BEU55DJG3_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::KRN56NDEZ method. sl@0: */ sl@0: class CStringPool_KRN56NDEZ_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_KRN56NDEZ_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_KRN56NDEZ_Transition is fully constructed. sl@0: */ sl@0: CStringPool_KRN56NDEZ_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::KRN56NDEZ method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::KRN56NDEZ) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_KRN56NDEZ_Transition is fully constructed. sl@0: @post No change in the CStringPool_KRN56NDEZ_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::KRN56NDEZ post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_KRN56NDEZ_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_KRN56NDEZ_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::APY57TEH3 method. sl@0: */ sl@0: class CStringPool_APY57TEH3_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_APY57TEH3_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_APY57TEH3_Transition is fully constructed. sl@0: */ sl@0: CStringPool_APY57TEH3_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::APY57TEH3 method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::APY57TEH3) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_APY57TEH3_Transition is fully constructed. sl@0: @post No change in the CStringPool_APY57TEH3_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::APY57TEH3 post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_APY57TEH3_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_APY57TEH3_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CStringPool::HAD57SK27 method. sl@0: */ sl@0: class CStringPool_HAD57SK27_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CStringPool_HAD57SK27_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: Intended Usage : Standard c'tor method. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aUTContext The context this transition is operating in. sl@0: @param aValidator Used for checking the pre & post conditions of the test object. sl@0: @pre None. sl@0: @post CStringPool_HAD57SK27_Transition is fully constructed. sl@0: */ sl@0: CStringPool_HAD57SK27_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CStringPool::HAD57SK27 method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CStringPool::HAD57SK27) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CStringPool_HAD57SK27_Transition is fully constructed. sl@0: @post No change in the CStringPool_HAD57SK27_Transition apart sl@0: from iStringPool, which may have changed state. sl@0: (@see CStringPool::HAD57SK27 post-condition) for iStringPool's new state. sl@0: */ sl@0: inline void TransitMethodL(); sl@0: sl@0: /** sl@0: @fn Context() const sl@0: Intended Usage : To provide access to the unit test context cast to the correct type. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return The unit test context cast to a CStringPool_UnitTestContext sl@0: @pre iUTContext is a valid CStringPool_UnitTestContext. sl@0: @post No change in the CStringPool_HAD57SK27_Transition sl@0: */ sl@0: inline CStringPool_UnitTestContext& Context() const; sl@0: }; // CStringPool_HAD57SK27_Transition sl@0: sl@0: sl@0: sl@0: #include "StringPoolTransitions.inl" sl@0: sl@0: #include "StringPoolUnitTestContext.inl" sl@0: sl@0: #endif // __STRINGPOOLTRANSITIONS_H__ sl@0: