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 CUnitTest class methods. sl@0: // sl@0: // sl@0: sl@0: #ifndef __UNITTESTTRANSITIONS_H__ sl@0: #define __UNITTESTTRANSITIONS_H__ sl@0: sl@0: #include "TestUtilities.h" sl@0: #include "StateAccessor.h" sl@0: #include "LeakTestTransition.h" sl@0: #include sl@0: #include sl@0: #include "UnitTestStateAccessor.h" sl@0: #include sl@0: sl@0: #define CTransitionType CLeakTestTransition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the CUnitTest specific sl@0: parameters and behaviour on the CUnitTest sl@0: test class for a transition. sl@0: */ sl@0: class CUnitTest_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_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 7.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 CUnitTest class under test. sl@0: @pre None. sl@0: @post CUnitTest_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CUnitTest_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver); sl@0: sl@0: /** sl@0: @fn ~CUnitTest_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CUnitTest_UnitTestContext is fully constructed. sl@0: @post CUnitTest_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CUnitTest_UnitTestContext(); sl@0: sl@0: sl@0: CUnitTest* iUnitTest; sl@0: // CUnitTestTestDerivation* iUnitTestDerived; sl@0: const TDesC* iName; sl@0: CDataLogger* iDataLogger; sl@0: MUnitTestObserver* iUnitTestObserver; sl@0: TTimeIntervalMicroSeconds32 iTimeAfter; sl@0: CTransition* iTransition; sl@0: TAny* iParams; sl@0: CUnitTestTestDerivation* iUnitTestUnderTest; sl@0: CTransition* iCurrentTransition; sl@0: TInt iLeaveErrorCode; sl@0: sl@0: }; // CUnitTest_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::NewL method. sl@0: */ sl@0: class CUnitTest_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_NewL_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 CUnitTest_NewL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_NewL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_NewL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::NewL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_NewL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::Dtor method. sl@0: */ sl@0: class CUnitTest_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_Dtor_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 CUnitTest_Dtor_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_Dtor_Transition is fully constructed. sl@0: @post No change in the CUnitTest_Dtor_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::Dtor post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_Dtor_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::TransitionSetL method. sl@0: */ sl@0: class CUnitTest_TransitionSetL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_TransitionSetL_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 CUnitTest_TransitionSetL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_TransitionSetL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::TransitionSetL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::TransitionSetL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_TransitionSetL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_TransitionSetL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::TransitionSetL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_TransitionSetL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_TransitionSetL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::GetCurrentTransition method. sl@0: */ sl@0: class CUnitTest_GetCurrentTransition_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_GetCurrentTransition_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 CUnitTest_GetCurrentTransition_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_GetCurrentTransition_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::GetCurrentTransition method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::GetCurrentTransition) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_GetCurrentTransition_Transition is fully constructed. sl@0: @post No change in the CUnitTest_GetCurrentTransition_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::GetCurrentTransition post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_GetCurrentTransition_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_GetCurrentTransition_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::SetCurrentTransition method. sl@0: */ sl@0: class CUnitTest_SetCurrentTransition_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_SetCurrentTransition_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 CUnitTest_SetCurrentTransition_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_SetCurrentTransition_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::SetCurrentTransition method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::SetCurrentTransition) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_SetCurrentTransition_Transition is fully constructed. sl@0: @post No change in the CUnitTest_SetCurrentTransition_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::SetCurrentTransition post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_SetCurrentTransition_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_SetCurrentTransition_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::SetParametersL method. sl@0: */ sl@0: class CUnitTest_SetParametersL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_SetParametersL_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 CUnitTest_SetParametersL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_SetParametersL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::SetParametersL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::SetParametersL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_SetParametersL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_SetParametersL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::SetParametersL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_SetParametersL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_SetParametersL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::PrepareUnitTestL method. sl@0: */ sl@0: class CUnitTest_PrepareUnitTestL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_PrepareUnitTestL_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 CUnitTest_PrepareUnitTestL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_PrepareUnitTestL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::PrepareUnitTestL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::PrepareUnitTestL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_PrepareUnitTestL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_PrepareUnitTestL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::PrepareUnitTestL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_PrepareUnitTestL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_PrepareUnitTestL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::RunTest method. sl@0: */ sl@0: class CUnitTest_RunTest_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_RunTest_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 CUnitTest_RunTest_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_RunTest_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::RunTest method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::RunTest) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_RunTest_Transition is fully constructed. sl@0: @post No change in the CUnitTest_RunTest_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::RunTest post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_RunTest_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_RunTest_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::AddTransitionL method. sl@0: */ sl@0: class CUnitTest_AddTransitionL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_AddTransitionL_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 CUnitTest_AddTransitionL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_AddTransitionL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::AddTransitionL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::AddTransitionL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_AddTransitionL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_AddTransitionL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::AddTransitionL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_AddTransitionL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_AddTransitionL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::AddBlockingTransitionL method. sl@0: */ sl@0: class CUnitTest_AddBlockingTransitionL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_AddBlockingTransitionL_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 CUnitTest_AddBlockingTransitionL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_AddBlockingTransitionL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::AddBlockingTransitionL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::AddBlockingTransitionL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_AddBlockingTransitionL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_AddBlockingTransitionL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::AddBlockingTransitionL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_AddBlockingTransitionL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_AddBlockingTransitionL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::AddLeaveErrorCodeL method. sl@0: */ sl@0: class CUnitTest_AddLeaveErrorCodeL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_AddLeaveErrorCodeL_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 CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_AddLeaveErrorCodeL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::AddLeaveErrorCodeL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::AddLeaveErrorCodeL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed. sl@0: @post No change in the CUnitTest_AddLeaveErrorCodeL_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::AddLeaveErrorCodeL post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_AddLeaveErrorCodeL_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_AddLeaveErrorCodeL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CUnitTest::UnitTestName method. sl@0: */ sl@0: class CUnitTest_UnitTestName_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CUnitTest_UnitTestName_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 CUnitTest_UnitTestName_Transition is fully constructed. sl@0: */ sl@0: CUnitTest_UnitTestName_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CUnitTest::UnitTestName method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CUnitTest::UnitTestName) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CUnitTest_UnitTestName_Transition is fully constructed. sl@0: @post No change in the CUnitTest_UnitTestName_Transition apart sl@0: from iUnitTest, which may have changed state. sl@0: (@see CUnitTest::UnitTestName post-condition) for iUnitTest'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 CUnitTest_UnitTestContext sl@0: @pre iUTContext is a valid CUnitTest_UnitTestContext. sl@0: @post No change in the CUnitTest_UnitTestName_Transition sl@0: */ sl@0: inline CUnitTest_UnitTestContext& Context() const; sl@0: }; // CUnitTest_UnitTestName_Transition sl@0: sl@0: sl@0: // Add additional Transition class definitions here... sl@0: sl@0: #include "UnitTestTransitions.inl" sl@0: sl@0: #include "UnitTestUnitTestContext.inl" sl@0: sl@0: #endif // __UNITTESTTRANSITIONS_H__ sl@0: