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 CDefaultLogOutput class methods. sl@0: // sl@0: // sl@0: sl@0: #ifndef __DEFAULTLOGOUTPUTTRANSITIONS_H__ sl@0: #define __DEFAULTLOGOUTPUTTRANSITIONS_H__ sl@0: sl@0: #include "TestUtilities.h" sl@0: #include "StateAccessor.h" sl@0: #include "LeakTestTransition.h" sl@0: #include sl@0: #include "DefaultLogOutput.h" sl@0: #include "DefaultLogOutputStateAccessor.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 CDefaultLogOutput specific sl@0: parameters and behaviour on the CDefaultLogOutput sl@0: test class for a transition. sl@0: */ sl@0: class CDefaultLogOutput_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_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 CDefaultLogOutput class under test. sl@0: @pre None. sl@0: @post CDefaultLogOutput_UnitTestContext is fully constructed, and initialised. sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aStateAccessor, sl@0: MTransitionObserver& aObserver); sl@0: sl@0: /** sl@0: @fn ~CDefaultLogOutput_UnitTestContext() sl@0: Intended Usage : Default Destructor sl@0: @since 7.0 sl@0: @pre CDefaultLogOutput_UnitTestContext is fully constructed. sl@0: @post CDefaultLogOutput_UnitTestContext is fully destroyed sl@0: */ sl@0: virtual inline ~CDefaultLogOutput_UnitTestContext(); sl@0: sl@0: /** The instance of the class under test */ sl@0: CDefaultLogOutput* iDefaultLogOutput; sl@0: /** The text to output to the test log file */ sl@0: const TDesC* iOutput; sl@0: }; // CDefaultLogOutput_UnitTestContext sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDefaultLogOutput::NewL method. sl@0: */ sl@0: class CDefaultLogOutput_NewL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_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 CDefaultLogOutput_NewL_Transition is fully constructed. sl@0: */ sl@0: CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultLogOutput::NewL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultLogOutput::NewL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultLogOutput_NewL_Transition is fully constructed. sl@0: @post No change in the CDefaultLogOutput_NewL_Transition apart sl@0: from iDefaultLogOutput, which may have changed state. sl@0: (@see CDefaultLogOutput::NewL post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext. sl@0: @post No change in the CDefaultLogOutput_NewL_Transition sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext& Context() const; sl@0: }; // CDefaultLogOutput_NewL_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDefaultLogOutput::Dtor method. sl@0: */ sl@0: class CDefaultLogOutput_Dtor_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_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 CDefaultLogOutput_Dtor_Transition is fully constructed. sl@0: */ sl@0: CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultLogOutput::Dtor method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultLogOutput::Dtor) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultLogOutput_Dtor_Transition is fully constructed. sl@0: @post No change in the CDefaultLogOutput_Dtor_Transition apart sl@0: from iDefaultLogOutput, which may have changed state. sl@0: (@see CDefaultLogOutput::Dtor post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext. sl@0: @post No change in the CDefaultLogOutput_Dtor_Transition sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext& Context() const; sl@0: }; // CDefaultLogOutput_Dtor_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDefaultLogOutput::OpenL method. sl@0: */ sl@0: class CDefaultLogOutput_OpenL_Transition : public CTransitionType sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_OpenL_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 CDefaultLogOutput_OpenL_Transition is fully constructed. sl@0: */ sl@0: CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultLogOutput::OpenL method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultLogOutput::OpenL) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultLogOutput_OpenL_Transition is fully constructed. sl@0: @post No change in the CDefaultLogOutput_OpenL_Transition apart sl@0: from iDefaultLogOutput, which may have changed state. sl@0: (@see CDefaultLogOutput::OpenL post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext. sl@0: @post No change in the CDefaultLogOutput_OpenL_Transition sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext& Context() const; sl@0: }; // CDefaultLogOutput_OpenL_Transition sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDefaultLogOutput::Close method. sl@0: */ sl@0: class CDefaultLogOutput_Close_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_Close_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 CDefaultLogOutput_Close_Transition is fully constructed. sl@0: */ sl@0: CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultLogOutput::Close method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultLogOutput::Close) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultLogOutput_Close_Transition is fully constructed. sl@0: @post No change in the CDefaultLogOutput_Close_Transition apart sl@0: from iDefaultLogOutput, which may have changed state. sl@0: (@see CDefaultLogOutput::Close post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext. sl@0: @post No change in the CDefaultLogOutput_Close_Transition sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext& Context() const; sl@0: }; // CDefaultLogOutput_Close_Transition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Transition test of the CDefaultLogOutput::Write method. sl@0: */ sl@0: class CDefaultLogOutput_Write_Transition : public CTransition sl@0: { sl@0: public: sl@0: /** sl@0: @fn CDefaultLogOutput_Write_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 CDefaultLogOutput_Write_Transition is fully constructed. sl@0: */ sl@0: CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: /** sl@0: @fn TransitMethodL() sl@0: Intended Usage : To execute the CDefaultLogOutput::Write method for the test harness. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, (@see CDefaultLogOutput::Write) sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDefaultLogOutput_Write_Transition is fully constructed. sl@0: @post No change in the CDefaultLogOutput_Write_Transition apart sl@0: from iDefaultLogOutput, which may have changed state. sl@0: (@see CDefaultLogOutput::Write post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext sl@0: @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext. sl@0: @post No change in the CDefaultLogOutput_Write_Transition sl@0: */ sl@0: inline CDefaultLogOutput_UnitTestContext& Context() const; sl@0: }; // CDefaultLogOutput_Write_Transition sl@0: sl@0: #include "DefaultLogOutputTransitions.inl" sl@0: sl@0: #include "DefaultLogOutputUnitTestContext.inl" sl@0: sl@0: #endif // __DEFAULTLOGOUTPUTTRANSITIONS_H__ sl@0: