os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideTransitions.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideTransitions.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// This file contains the definitions for
    1.18 +// the transition classes for testing the
    1.19 +// CExampleInterface interface.
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +#ifndef __SUICIDETRANSITION_H__
    1.24 +#define __SUICIDETRANSITION_H__
    1.25 +
    1.26 +#include <test_bed/transition.h>
    1.27 +#include "LeakTestTransition.h"
    1.28 +#include "Interface.h"
    1.29 +
    1.30 +class CExampleInterface;
    1.31 +
    1.32 +#define CTransitionType CLeakTestTransition
    1.33 +
    1.34 +// ______________________________________________________________________________
    1.35 +//
    1.36 +/**
    1.37 +	Comments : The context in which the transitions will run
    1.38 +				That is to say the container in which the transition 
    1.39 +				parameters are passed around
    1.40 + */
    1.41 +class CSuicideInterface_UnitTestContext : public CUnitTestContext
    1.42 +	{
    1.43 +public:
    1.44 +	inline CSuicideInterface_UnitTestContext(CDataLogger& aDataLogger, 
    1.45 +							  MStateAccessor& aAccessor,
    1.46 +							  MTransitionObserver& aObserver);
    1.47 +	inline ~CSuicideInterface_UnitTestContext();
    1.48 +
    1.49 +	CExampleInterface* iExampleInterface;
    1.50 +	};
    1.51 +
    1.52 +/**
    1.53 +	Comments : Transition of the NewL method
    1.54 + */
    1.55 +class CSuicideInterfaceNewLTransition : public CTransitionType
    1.56 +	{
    1.57 +public:
    1.58 +	inline CSuicideInterfaceNewLTransition( CUnitTestContext& aUTContext,
    1.59 +											TTransitionValidator& aValidator);
    1.60 +	inline void TransitMethodL();
    1.61 +	inline CSuicideInterface_UnitTestContext& Context();
    1.62 +	};
    1.63 +
    1.64 +/**
    1.65 +	Comments : Transition of the destructor method
    1.66 + */
    1.67 +class CSuicideInterfaceDtorTransition : public CTransition
    1.68 +	{
    1.69 +public:
    1.70 +	inline CSuicideInterfaceDtorTransition( CUnitTestContext& aUTContext,
    1.71 +											TTransitionValidator& aValidator);
    1.72 +	inline void TransitMethodL();
    1.73 +	inline CSuicideInterface_UnitTestContext& Context();
    1.74 +	};
    1.75 +
    1.76 +
    1.77 +/**
    1.78 +	Comments : Transition of the FireAndForget method
    1.79 + */
    1.80 +class CSuicideInterfaceFireAndForgetTransition : public CTransition
    1.81 +	{
    1.82 +public:
    1.83 +	inline CSuicideInterfaceFireAndForgetTransition( CUnitTestContext& aUTContext,
    1.84 +											TTransitionValidator& aValidator);
    1.85 +	inline void TransitMethodL();
    1.86 +	inline CSuicideInterface_UnitTestContext& Context();
    1.87 +	};
    1.88 +
    1.89 +#include "SuicideTransitions.inl"
    1.90 +
    1.91 +#endif	// __SUICIDETRANSITION_H__