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 definitions for sl@0: // the transition classes for testing the sl@0: // CExampleInterface interface. sl@0: // sl@0: // sl@0: sl@0: #ifndef __SUICIDETRANSITION_H__ sl@0: #define __SUICIDETRANSITION_H__ sl@0: sl@0: #include sl@0: #include "LeakTestTransition.h" sl@0: #include "Interface.h" sl@0: sl@0: class CExampleInterface; sl@0: sl@0: #define CTransitionType CLeakTestTransition sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: Comments : The context in which the transitions will run sl@0: That is to say the container in which the transition sl@0: parameters are passed around sl@0: */ sl@0: class CSuicideInterface_UnitTestContext : public CUnitTestContext sl@0: { sl@0: public: sl@0: inline CSuicideInterface_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aAccessor, sl@0: MTransitionObserver& aObserver); sl@0: inline ~CSuicideInterface_UnitTestContext(); sl@0: sl@0: CExampleInterface* iExampleInterface; sl@0: }; sl@0: sl@0: /** sl@0: Comments : Transition of the NewL method sl@0: */ sl@0: class CSuicideInterfaceNewLTransition : public CTransitionType sl@0: { sl@0: public: sl@0: inline CSuicideInterfaceNewLTransition( CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: inline void TransitMethodL(); sl@0: inline CSuicideInterface_UnitTestContext& Context(); sl@0: }; sl@0: sl@0: /** sl@0: Comments : Transition of the destructor method sl@0: */ sl@0: class CSuicideInterfaceDtorTransition : public CTransition sl@0: { sl@0: public: sl@0: inline CSuicideInterfaceDtorTransition( CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: inline void TransitMethodL(); sl@0: inline CSuicideInterface_UnitTestContext& Context(); sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Comments : Transition of the FireAndForget method sl@0: */ sl@0: class CSuicideInterfaceFireAndForgetTransition : public CTransition sl@0: { sl@0: public: sl@0: inline CSuicideInterfaceFireAndForgetTransition( CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator); sl@0: inline void TransitMethodL(); sl@0: inline CSuicideInterface_UnitTestContext& Context(); sl@0: }; sl@0: sl@0: #include "SuicideTransitions.inl" sl@0: sl@0: #endif // __SUICIDETRANSITION_H__