sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This file contains the definitions for
|
sl@0
|
15 |
// the transition classes for testing the
|
sl@0
|
16 |
// CExampleInterface interface.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __SUICIDETRANSITION_H__
|
sl@0
|
21 |
#define __SUICIDETRANSITION_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <test_bed/transition.h>
|
sl@0
|
24 |
#include "LeakTestTransition.h"
|
sl@0
|
25 |
#include "Interface.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
class CExampleInterface;
|
sl@0
|
28 |
|
sl@0
|
29 |
#define CTransitionType CLeakTestTransition
|
sl@0
|
30 |
|
sl@0
|
31 |
// ______________________________________________________________________________
|
sl@0
|
32 |
//
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Comments : The context in which the transitions will run
|
sl@0
|
35 |
That is to say the container in which the transition
|
sl@0
|
36 |
parameters are passed around
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
class CSuicideInterface_UnitTestContext : public CUnitTestContext
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
inline CSuicideInterface_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
42 |
MStateAccessor& aAccessor,
|
sl@0
|
43 |
MTransitionObserver& aObserver);
|
sl@0
|
44 |
inline ~CSuicideInterface_UnitTestContext();
|
sl@0
|
45 |
|
sl@0
|
46 |
CExampleInterface* iExampleInterface;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
Comments : Transition of the NewL method
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
class CSuicideInterfaceNewLTransition : public CTransitionType
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
inline CSuicideInterfaceNewLTransition( CUnitTestContext& aUTContext,
|
sl@0
|
56 |
TTransitionValidator& aValidator);
|
sl@0
|
57 |
inline void TransitMethodL();
|
sl@0
|
58 |
inline CSuicideInterface_UnitTestContext& Context();
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Comments : Transition of the destructor method
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
class CSuicideInterfaceDtorTransition : public CTransition
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
inline CSuicideInterfaceDtorTransition( CUnitTestContext& aUTContext,
|
sl@0
|
68 |
TTransitionValidator& aValidator);
|
sl@0
|
69 |
inline void TransitMethodL();
|
sl@0
|
70 |
inline CSuicideInterface_UnitTestContext& Context();
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
Comments : Transition of the FireAndForget method
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
class CSuicideInterfaceFireAndForgetTransition : public CTransition
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
inline CSuicideInterfaceFireAndForgetTransition( CUnitTestContext& aUTContext,
|
sl@0
|
81 |
TTransitionValidator& aValidator);
|
sl@0
|
82 |
inline void TransitMethodL();
|
sl@0
|
83 |
inline CSuicideInterface_UnitTestContext& Context();
|
sl@0
|
84 |
};
|
sl@0
|
85 |
|
sl@0
|
86 |
#include "SuicideTransitions.inl"
|
sl@0
|
87 |
|
sl@0
|
88 |
#endif // __SUICIDETRANSITION_H__
|