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: // This file contains the definition of the sl@0: // class CExampleInterfaceUnitTest sl@0: // sl@0: // sl@0: sl@0: #ifndef __MAGICUNITTEST_H__ sl@0: #define __MAGICUNITTEST_H__ sl@0: sl@0: #include sl@0: sl@0: #include sl@0: #include "MagicStateAccessors.h" sl@0: #include "MagicTransitions.h" sl@0: #include "MagicTransitionValidation.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : UnitTest CreateAndDestroy on the CExampleInterface test class. sl@0: */ sl@0: class CExampleInterfaceCreateAndDestroyUnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @return CExampleInterfaceCreateAndDestroyUnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterfaceCreateAndDestroyUnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterfaceCreateAndDestroyUnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed. sl@0: @post CExampleInterfaceCreateAndDestroyUnitTest is fully destroyed. sl@0: */ sl@0: inline ~CExampleInterfaceCreateAndDestroyUnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterfaceCreateAndDestroyUnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterfaceCreateAndDestroyUnitTest is fully constructed. sl@0: @post CExampleInterfaceCreateAndDestroyUnitTest is fully initialised. sl@0: */ sl@0: inline void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UintTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: REComSession* iEComSession; sl@0: }; sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : UnitTest AltCreateAndDestroy on the CExampleInterface test class. sl@0: */ sl@0: class CExampleInterfaceAltCreateAndDestroyUnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @return CExampleInterfaceAltCreateAndDestroyUnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterfaceAltCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterfaceAltCreateAndDestroyUnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterfaceAltCreateAndDestroyUnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed. sl@0: @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully destroyed. sl@0: */ sl@0: inline ~CExampleInterfaceAltCreateAndDestroyUnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterfaceAltCreateAndDestroyUnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterfaceAltCreateAndDestroyUnitTest is fully constructed. sl@0: @post CExampleInterfaceAltCreateAndDestroyUnitTest is fully initialised. sl@0: */ sl@0: inline void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: REComSession* iEComSession; sl@0: }; sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Unit Test for the ListI mplementations functions on CExampleInterface, sl@0: the class under test. sl@0: */ sl@0: class CExampleInterface_ListImplementations_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CExampleInterface_ListImplementations_UnitTest* The constructed sl@0: object. sl@0: @pre None. sl@0: @post CExampleInterface_ListImplementations_UnitTest is fully sl@0: constructed, and initialised. sl@0: */ sl@0: static CExampleInterface_ListImplementations_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterface_ListImplementations_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterface_ListImplementations_UnitTest is fully sl@0: constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterface_ListImplementations_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterface_ListImplementations_UnitTest is sl@0: fully constructed. sl@0: @post CExampleInterface_ListImplementations_UnitTest is sl@0: fully destroyed. sl@0: */ sl@0: ~CExampleInterface_ListImplementations_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterface_ListImplementations_UnitTest is fully sl@0: constructed. sl@0: */ sl@0: inline CExampleInterface_ListImplementations_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterface_ListImplementations_UnitTest is sl@0: fully constructed. sl@0: @post CExampleInterface_ListImplementations_UnitTest is sl@0: fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: // C'tor, d'tor, and method transition validators sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_ListImplementations_TransitionValidator* iListImplementationsValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: REComSession* iEComSession; sl@0: }; // CExampleInterface_ListImplementations_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Unit Test for DefectHAN4WZHSY on CExampleInterface, the class under test. sl@0: */ sl@0: class CExampleInterface_DefectHAN4WZHSY_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CExampleInterface_DefectHAN4WZHSY_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterface_DefectHAN4WZHSY_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterface_DefectHAN4WZHSY_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully destroyed. sl@0: */ sl@0: ~CExampleInterface_DefectHAN4WZHSY_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterface_DefectHAN4WZHSY_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterface_DefectHAN4WZHSY_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterface_DefectHAN4WZHSY_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectHAN4WZHSY_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and method transition validators sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CExampleInterface_DefectHAN4WZHSY_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Unit Test for DefectCUO4YCEUE on CExampleInterface, the class under test. sl@0: */ sl@0: class CExampleInterface_DefectCUO4YCEUE_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CExampleInterface_DefectCUO4YCEUE_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterface_DefectCUO4YCEUE_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterface_DefectCUO4YCEUE_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully destroyed. sl@0: */ sl@0: ~CExampleInterface_DefectCUO4YCEUE_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterface_DefectCUO4YCEUE_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterface_DefectCUO4YCEUE_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectCUO4YCEUE_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and method transition validators sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CExampleInterface_DefectCUO4YCEUE_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Unit Test for DefectEVS-4Z9BPG on CExampleInterface, the class under test. sl@0: */ sl@0: class CExampleInterface_DefectEVS4Z9BPG_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CExampleInterface_DefectEVS4Z9BPG_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterface_DefectEVS4Z9BPG_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterface_DefectHAN4WZHSY_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterface_DefectEVS4Z9BPG_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully destroyed. sl@0: */ sl@0: ~CExampleInterface_DefectEVS4Z9BPG_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterface_DefectEVS4Z9BPG_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectEVS4Z9BPG_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and method transition validators sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Default_TransitionValidator* iDefaultValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CExampleInterface_DefectEVS4Z9BPG_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Unit Test for DefectKRN-53SL4Q on CExampleInterface, the class under test. sl@0: */ sl@0: class CExampleInterface_DefectKRN53SL4Q_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CExampleInterface_DefectKRN53SL4Q_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CExampleInterface_DefectKRN53SL4Q_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CExampleInterface_DefectKRN53SL4Q_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CExampleInterface_DefectKRN53SL4Q_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully destroyed. sl@0: */ sl@0: ~CExampleInterface_DefectKRN53SL4Q_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& 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. sl@0: @param aStateAccessor WhiteBox state access to the CExampleInterface class. sl@0: @pre None. sl@0: @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed. sl@0: */ sl@0: inline CExampleInterface_DefectKRN53SL4Q_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CExampleInterface_DefectKRN53SL4Q_UnitTest is fully constructed. sl@0: @post CExampleInterface_DefectKRN53SL4Q_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CExampleInterface class tested by this UnitTest's transitions. sl@0: */ sl@0: CExampleInterface_UnitTestContext* iUTContext; sl@0: TExampleInterface_StateAccessor* iStateAccessor; sl@0: sl@0: // C'tor, d'tor, and method transition validators sl@0: TExampleInterface_Ctor_TransitionValidator* iCtorValidator; sl@0: TExampleInterface_Default_TransitionValidator* iDefaultValidator; sl@0: TExampleInterface_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CExampleInterface_DefectKRN53SL4Q_UnitTest sl@0: sl@0: #endif