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 definition of the
|
sl@0
|
15 |
// class CSuicideInterfaceUnitTest
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __SUICIDEUNITTEST_H__
|
sl@0
|
20 |
#define __SUICIDEUNITTEST_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <test_bed/unittest.h>
|
sl@0
|
25 |
#include "SuicideStateAccessors.h"
|
sl@0
|
26 |
#include "SuicideTransitions.h"
|
sl@0
|
27 |
#include "SuicideTransitionValidation.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
// ______________________________________________________________________________
|
sl@0
|
30 |
//
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
@internalComponent
|
sl@0
|
33 |
|
sl@0
|
34 |
Comments : UnitTest CreateAndDestroy on the CExampleInterface test class.
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
class CSuicideInterfaceCreateAndDestroyUnitTest : public CUnitTest
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
41 |
MUnitTestObserver& aObserver)
|
sl@0
|
42 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
43 |
cleanup stack.
|
sl@0
|
44 |
Error Condition : Leaves with the error code.
|
sl@0
|
45 |
@leave KErrNoMemory
|
sl@0
|
46 |
@since 7.0
|
sl@0
|
47 |
@param aDataLogger The output logging object.
|
sl@0
|
48 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
49 |
@param aStateAccessor WhiteBox state access to the CExampleInterface class.
|
sl@0
|
50 |
@return CSuicideInterfaceCreateAndDestroyUnitTest* The constructed object.
|
sl@0
|
51 |
@pre None.
|
sl@0
|
52 |
@post CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
static CSuicideInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
55 |
MUnitTestObserver& aObserver);
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
@fn RunError(TInt aError)
|
sl@0
|
59 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
60 |
to restore the CSuicideInterfaceCreateAndDestroyUnitTest
|
sl@0
|
61 |
object to a sensible state.
|
sl@0
|
62 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
63 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
64 |
@since 7.0
|
sl@0
|
65 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
66 |
@see CUnitTest::RunError()
|
sl@0
|
67 |
@pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
|
sl@0
|
68 |
@post The object has been restored to a sensible state.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
inline TInt RunError(TInt aError);
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
@fn ~CSuicideInterfaceCreateAndDestroyUnitTest()
|
sl@0
|
74 |
Intended Usage : Standard Destructor.
|
sl@0
|
75 |
Error Condition : None.
|
sl@0
|
76 |
@since 7.0
|
sl@0
|
77 |
@pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
|
sl@0
|
78 |
@post CSuicideInterfaceCreateAndDestroyUnitTest is fully destroyed.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
inline ~CSuicideInterfaceCreateAndDestroyUnitTest();
|
sl@0
|
81 |
|
sl@0
|
82 |
private:
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
@fn CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
|
sl@0
|
85 |
MUnitTestObserver& aObserver)
|
sl@0
|
86 |
Intended Usage : Default constructor.
|
sl@0
|
87 |
Error Condition : None.
|
sl@0
|
88 |
@since 7.0
|
sl@0
|
89 |
@param aDataLogger The output logging object.
|
sl@0
|
90 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
91 |
@param aStateAccessor WhiteBox state access to the CExampleInterface class.
|
sl@0
|
92 |
@pre None.
|
sl@0
|
93 |
@post CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
inline CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
|
sl@0
|
96 |
MUnitTestObserver& aObserver);
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
@fn void ConstructL()
|
sl@0
|
100 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
101 |
to complete the object initialisation.
|
sl@0
|
102 |
Error Condition : Leaves with an error code.
|
sl@0
|
103 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
104 |
@since 7.0
|
sl@0
|
105 |
@return None
|
sl@0
|
106 |
@pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
|
sl@0
|
107 |
@post CSuicideInterfaceCreateAndDestroyUnitTest is fully initialised.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
inline void ConstructL();
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
The context of the Unit Test.
|
sl@0
|
113 |
i.e The CExampleInterface class tested by this UintTest's transitions.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
CSuicideInterface_UnitTestContext* iUTContext;
|
sl@0
|
116 |
TSuicideInterface_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
117 |
TSuicideInterface_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
118 |
TSuicideInterface_StateAccessor* iStateAccessor;
|
sl@0
|
119 |
REComSession* iEComSession;
|
sl@0
|
120 |
};
|
sl@0
|
121 |
|
sl@0
|
122 |
// ______________________________________________________________________________
|
sl@0
|
123 |
//
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
@internalComponent
|
sl@0
|
126 |
|
sl@0
|
127 |
Comments : UnitTest of the CExampleInterface test class.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
class CSuicideInterfaceFireAndForgetUnitTest : public CUnitTest
|
sl@0
|
130 |
{
|
sl@0
|
131 |
public:
|
sl@0
|
132 |
/**
|
sl@0
|
133 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
134 |
MUnitTestObserver& aObserver)
|
sl@0
|
135 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
136 |
cleanup stack
|
sl@0
|
137 |
Error Condition : Leaves with the error code.
|
sl@0
|
138 |
@leave KErrNoMemory
|
sl@0
|
139 |
@since 7.0
|
sl@0
|
140 |
@param aDataLogger The output logging object.
|
sl@0
|
141 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
142 |
@param aStateAccessor The WhiteBox state access for the CExampleInterface class.
|
sl@0
|
143 |
@return CSuicideInterfaceFireAndForgetUnitTest* The constructed object.
|
sl@0
|
144 |
@pre None
|
sl@0
|
145 |
@post CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
static CSuicideInterfaceFireAndForgetUnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
148 |
MUnitTestObserver& aObserver);
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
@fn RunError(TInt aError)
|
sl@0
|
152 |
Intended Usage : Trap on the RunL leave, called by the Active Scheduler.
|
sl@0
|
153 |
Error Condition : @see CUnitTest::RunError()
|
sl@0
|
154 |
@since 7.0
|
sl@0
|
155 |
@return TInt KErrNone if cleanup successful, otherwise @see CUnitTest::RunError()
|
sl@0
|
156 |
@pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
|
sl@0
|
157 |
@post The object has been restored to a sensible state.
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
inline TInt RunError(TInt aError);
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
@fn ~CSuicideInterfaceFireAndForgetUnitTest()
|
sl@0
|
163 |
Intended Usage : Standard Destructor
|
sl@0
|
164 |
Error Condition : None.
|
sl@0
|
165 |
@since 7.0
|
sl@0
|
166 |
@pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
|
sl@0
|
167 |
@post CSuicideInterfaceFireAndForgetUnitTest is fully destroyed.
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
inline ~CSuicideInterfaceFireAndForgetUnitTest();
|
sl@0
|
170 |
|
sl@0
|
171 |
private:
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@fn CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger,
|
sl@0
|
174 |
MUnitTestObserver& aObserver)
|
sl@0
|
175 |
Intended Usage : Default constructor
|
sl@0
|
176 |
Error Condition : None
|
sl@0
|
177 |
@since 7.0
|
sl@0
|
178 |
@param aDataLogger The output logging object.
|
sl@0
|
179 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
180 |
@param aStateAccessor The WhiteBox state access for the CExampleInterface class.
|
sl@0
|
181 |
@pre None
|
sl@0
|
182 |
@post CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
inline CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger,
|
sl@0
|
185 |
MUnitTestObserver& aObserver);
|
sl@0
|
186 |
|
sl@0
|
187 |
/**
|
sl@0
|
188 |
@fn void ConstructL()
|
sl@0
|
189 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
190 |
to complete the object initialisation.
|
sl@0
|
191 |
Error Condition : Leaves with an error code.
|
sl@0
|
192 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
193 |
@since 7.0
|
sl@0
|
194 |
@return None
|
sl@0
|
195 |
@pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
|
sl@0
|
196 |
@post CSuicideInterfaceFireAndForgetUnitTest is fully initialised.
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
inline void ConstructL();
|
sl@0
|
199 |
|
sl@0
|
200 |
/** The context of the Unit Test i.e a ClassName class */
|
sl@0
|
201 |
CSuicideInterface_UnitTestContext* iUTContext;
|
sl@0
|
202 |
TSuicideInterface_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
203 |
TSuicideInterface_FireAndForget_TransitionValidator* iFireAndForgetValidator;
|
sl@0
|
204 |
TSuicideInterface_StateAccessor* iStateAccessor;
|
sl@0
|
205 |
REComSession* iEComSession;
|
sl@0
|
206 |
};
|
sl@0
|
207 |
|
sl@0
|
208 |
#endif // __SUICIDEUNITTEST_H__
|