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 |
// The unit test class definitions for the CUnitTest class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __UNITTESTUNITTEST_H__
|
sl@0
|
19 |
#define __UNITTESTUNITTEST_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <ecom/test_bed/testbeddefinitions.h>
|
sl@0
|
22 |
#include "UnitTestStateAccessor.h"
|
sl@0
|
23 |
#include "UnitTestTransitionValidation.h"
|
sl@0
|
24 |
#include "UnitTestTransitions.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
// ______________________________________________________________________________
|
sl@0
|
27 |
//
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
@internalComponent
|
sl@0
|
30 |
|
sl@0
|
31 |
Comments : Unit Test for CreateAndDestroy on CUnitTest, the class under test.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
class CUnitTest_CreateAndDestroy_UnitTest : public CUnitTest
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
38 |
MUnitTestObserver& aObserver)
|
sl@0
|
39 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
40 |
cleanup stack.
|
sl@0
|
41 |
Error Condition : Leaves with the error code.
|
sl@0
|
42 |
@leave KErrNoMemory
|
sl@0
|
43 |
@since 7.0
|
sl@0
|
44 |
@param aDataLogger The output logging object.
|
sl@0
|
45 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
46 |
@return CUnitTest_CreateAndDestroy_UnitTest* The constructed object.
|
sl@0
|
47 |
@pre None.
|
sl@0
|
48 |
@post CUnitTest_CreateAndDestroy_UnitTest is fully constructed, and initialised.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
static CUnitTest_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
51 |
MUnitTestObserver& aObserver);
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@fn RunError(TInt aError)
|
sl@0
|
55 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
56 |
to restore the CUnitTest_CreateAndDestroy_UnitTest
|
sl@0
|
57 |
object to a sensible state.
|
sl@0
|
58 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
59 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
60 |
@since 7.0
|
sl@0
|
61 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
62 |
@see CUnitTest::RunError()
|
sl@0
|
63 |
@pre CUnitTest_CreateAndDestroy_UnitTest is fully constructed, and initialised.
|
sl@0
|
64 |
@post The object has been restored to a sensible state.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
inline TInt RunError(TInt aError);
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
@fn ~CUnitTest_CreateAndDestroy_UnitTest()
|
sl@0
|
70 |
Intended Usage : Standard Destructor.
|
sl@0
|
71 |
Error Condition : None.
|
sl@0
|
72 |
@since 7.0
|
sl@0
|
73 |
@pre CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
74 |
@post CUnitTest_CreateAndDestroy_UnitTest is fully destroyed.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
~CUnitTest_CreateAndDestroy_UnitTest();
|
sl@0
|
77 |
|
sl@0
|
78 |
private:
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
@fn CUnitTest_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
81 |
MUnitTestObserver& aObserver)
|
sl@0
|
82 |
Intended Usage : Default constructor.
|
sl@0
|
83 |
Error Condition : None.
|
sl@0
|
84 |
@since 7.0
|
sl@0
|
85 |
@param aDataLogger The output logging object.
|
sl@0
|
86 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
87 |
@param aStateAccessor WhiteBox state access to the CUnitTest class.
|
sl@0
|
88 |
@pre None.
|
sl@0
|
89 |
@post CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
inline CUnitTest_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
92 |
MUnitTestObserver& aObserver);
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@fn void ConstructL()
|
sl@0
|
96 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
97 |
to complete the object initialisation.
|
sl@0
|
98 |
Error Condition : Leaves with an error code.
|
sl@0
|
99 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
100 |
@since 7.0
|
sl@0
|
101 |
@return None
|
sl@0
|
102 |
@pre CUnitTest_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
103 |
@post CUnitTest_CreateAndDestroy_UnitTest is fully initialised.
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
void ConstructL();
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
The context of the Unit Test.
|
sl@0
|
109 |
i.e The CUnitTest class tested by this UnitTest's transitions.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
CUnitTest_UnitTestContext* iUTContext;
|
sl@0
|
112 |
TUnitTest_StateAccessor* iStateAccessor;
|
sl@0
|
113 |
// C'tor, d'tor, and method transition validators
|
sl@0
|
114 |
TUnitTest_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
115 |
TUnitTest_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
116 |
}; // CUnitTest_CreateAndDestroy_UnitTest
|
sl@0
|
117 |
|
sl@0
|
118 |
// ______________________________________________________________________________
|
sl@0
|
119 |
//
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
@internalComponent
|
sl@0
|
122 |
|
sl@0
|
123 |
Comments : Unit Test for ManageTransitions on CUnitTest, the class under test.
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
class CUnitTest_ManageTransitions_UnitTest : public CUnitTest
|
sl@0
|
126 |
{
|
sl@0
|
127 |
public:
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
130 |
MUnitTestObserver& aObserver)
|
sl@0
|
131 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
132 |
cleanup stack.
|
sl@0
|
133 |
Error Condition : Leaves with the error code.
|
sl@0
|
134 |
@leave KErrNoMemory
|
sl@0
|
135 |
@since 7.0
|
sl@0
|
136 |
@param aDataLogger The output logging object.
|
sl@0
|
137 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
138 |
@return CUnitTest_ManageTransitions_UnitTest* The constructed object.
|
sl@0
|
139 |
@pre None.
|
sl@0
|
140 |
@post CUnitTest_ManageTransitions_UnitTest is fully constructed, and initialised.
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
static CUnitTest_ManageTransitions_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
143 |
MUnitTestObserver& aObserver);
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@fn RunError(TInt aError)
|
sl@0
|
147 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
148 |
to restore the CUnitTest_ManageTransitions_UnitTest
|
sl@0
|
149 |
object to a sensible state.
|
sl@0
|
150 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
151 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
152 |
@since 7.0
|
sl@0
|
153 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
154 |
@see CUnitTest::RunError()
|
sl@0
|
155 |
@pre CUnitTest_ManageTransitions_UnitTest is fully constructed, and initialised.
|
sl@0
|
156 |
@post The object has been restored to a sensible state.
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
inline TInt RunError(TInt aError);
|
sl@0
|
159 |
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
@fn ~CUnitTest_ManageTransitions_UnitTest()
|
sl@0
|
162 |
Intended Usage : Standard Destructor.
|
sl@0
|
163 |
Error Condition : None.
|
sl@0
|
164 |
@since 7.0
|
sl@0
|
165 |
@pre CUnitTest_ManageTransitions_UnitTest is fully constructed.
|
sl@0
|
166 |
@post CUnitTest_ManageTransitions_UnitTest is fully destroyed.
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
~CUnitTest_ManageTransitions_UnitTest();
|
sl@0
|
169 |
|
sl@0
|
170 |
private:
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
@fn CUnitTest_ManageTransitions_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
173 |
MUnitTestObserver& aObserver)
|
sl@0
|
174 |
Intended Usage : Default constructor.
|
sl@0
|
175 |
Error Condition : None.
|
sl@0
|
176 |
@since 7.0
|
sl@0
|
177 |
@param aDataLogger The output logging object.
|
sl@0
|
178 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
179 |
@param aStateAccessor WhiteBox state access to the CUnitTest class.
|
sl@0
|
180 |
@pre None.
|
sl@0
|
181 |
@post CUnitTest_ManageTransitions_UnitTest is fully constructed.
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
inline CUnitTest_ManageTransitions_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
184 |
MUnitTestObserver& aObserver);
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
@fn void ConstructL()
|
sl@0
|
188 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
189 |
to complete the object initialisation.
|
sl@0
|
190 |
Error Condition : Leaves with an error code.
|
sl@0
|
191 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
192 |
@since 7.0
|
sl@0
|
193 |
@return None
|
sl@0
|
194 |
@pre CUnitTest_ManageTransitions_UnitTest is fully constructed.
|
sl@0
|
195 |
@post CUnitTest_ManageTransitions_UnitTest is fully initialised.
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
void ConstructL();
|
sl@0
|
198 |
|
sl@0
|
199 |
/**
|
sl@0
|
200 |
The context of the Unit Test.
|
sl@0
|
201 |
i.e The CUnitTest class tested by this UnitTest's transitions.
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
CUnitTest_UnitTestContext* iUTContext;
|
sl@0
|
204 |
TUnitTest_StateAccessor* iStateAccessor;
|
sl@0
|
205 |
// C'tor, d'tor, and method transition validators
|
sl@0
|
206 |
TUnitTest_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
207 |
TUnitTest_TransitionSet_TransitionValidator* iTransitionSetValidator;
|
sl@0
|
208 |
TUnitTest_SetCurrentTransition_TransitionValidator* iSetCurrentTransitionValidator;
|
sl@0
|
209 |
TUnitTest_GetCurrentTransition_TransitionValidator* iGetCurrentTransitionValidator;
|
sl@0
|
210 |
TUnitTest_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
211 |
}; // CUnitTest_ManageTransitions_UnitTest
|
sl@0
|
212 |
|
sl@0
|
213 |
// ______________________________________________________________________________
|
sl@0
|
214 |
//
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
@internalComponent
|
sl@0
|
217 |
|
sl@0
|
218 |
Comments : Unit Test for RunTests on CUnitTest, the class under test.
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
class CUnitTest_RunTests_UnitTest : public CUnitTest
|
sl@0
|
221 |
{
|
sl@0
|
222 |
public:
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
225 |
MUnitTestObserver& aObserver)
|
sl@0
|
226 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
227 |
cleanup stack.
|
sl@0
|
228 |
Error Condition : Leaves with the error code.
|
sl@0
|
229 |
@leave KErrNoMemory
|
sl@0
|
230 |
@since 7.0
|
sl@0
|
231 |
@param aDataLogger The output logging object.
|
sl@0
|
232 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
233 |
@return CUnitTest_RunTests_UnitTest* The constructed object.
|
sl@0
|
234 |
@pre None.
|
sl@0
|
235 |
@post CUnitTest_RunTests_UnitTest is fully constructed, and initialised.
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
static CUnitTest_RunTests_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
238 |
MUnitTestObserver& aObserver);
|
sl@0
|
239 |
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
@fn RunError(TInt aError)
|
sl@0
|
242 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
243 |
to restore the CUnitTest_RunTests_UnitTest
|
sl@0
|
244 |
object to a sensible state.
|
sl@0
|
245 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
246 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
247 |
@since 7.0
|
sl@0
|
248 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
249 |
@see CUnitTest::RunError()
|
sl@0
|
250 |
@pre CUnitTest_RunTests_UnitTest is fully constructed, and initialised.
|
sl@0
|
251 |
@post The object has been restored to a sensible state.
|
sl@0
|
252 |
*/
|
sl@0
|
253 |
inline TInt RunError(TInt aError);
|
sl@0
|
254 |
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
@fn ~CUnitTest_RunTests_UnitTest()
|
sl@0
|
257 |
Intended Usage : Standard Destructor.
|
sl@0
|
258 |
Error Condition : None.
|
sl@0
|
259 |
@since 7.0
|
sl@0
|
260 |
@pre CUnitTest_RunTests_UnitTest is fully constructed.
|
sl@0
|
261 |
@post CUnitTest_RunTests_UnitTest is fully destroyed.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
~CUnitTest_RunTests_UnitTest();
|
sl@0
|
264 |
|
sl@0
|
265 |
private:
|
sl@0
|
266 |
/**
|
sl@0
|
267 |
@fn CUnitTest_RunTests_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
268 |
MUnitTestObserver& aObserver)
|
sl@0
|
269 |
Intended Usage : Default constructor.
|
sl@0
|
270 |
Error Condition : None.
|
sl@0
|
271 |
@since 7.0
|
sl@0
|
272 |
@param aDataLogger The output logging object.
|
sl@0
|
273 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
274 |
@param aStateAccessor WhiteBox state access to the CUnitTest class.
|
sl@0
|
275 |
@pre None.
|
sl@0
|
276 |
@post CUnitTest_RunTests_UnitTest is fully constructed.
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
inline CUnitTest_RunTests_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
279 |
MUnitTestObserver& aObserver);
|
sl@0
|
280 |
|
sl@0
|
281 |
/**
|
sl@0
|
282 |
@fn void ConstructL()
|
sl@0
|
283 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
284 |
to complete the object initialisation.
|
sl@0
|
285 |
Error Condition : Leaves with an error code.
|
sl@0
|
286 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
287 |
@since 7.0
|
sl@0
|
288 |
@return None
|
sl@0
|
289 |
@pre CUnitTest_RunTests_UnitTest is fully constructed.
|
sl@0
|
290 |
@post CUnitTest_RunTests_UnitTest is fully initialised.
|
sl@0
|
291 |
*/
|
sl@0
|
292 |
void ConstructL();
|
sl@0
|
293 |
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
The context of the Unit Test.
|
sl@0
|
296 |
i.e The CUnitTest class tested by this UnitTest's transitions.
|
sl@0
|
297 |
*/
|
sl@0
|
298 |
CUnitTest_UnitTestContext* iUTContext;
|
sl@0
|
299 |
TUnitTest_StateAccessor* iStateAccessor;
|
sl@0
|
300 |
// C'tor, d'tor, and method transition validators
|
sl@0
|
301 |
TUnitTest_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
302 |
TUnitTest_SetParameters_TransitionValidator* iSetParametersValidator;
|
sl@0
|
303 |
TUnitTest_PrepareUnitTest_TransitionValidator* iPrepareUnitTestValidator;
|
sl@0
|
304 |
TUnitTest_RunTest_TransitionValidator* iRunTestValidator;
|
sl@0
|
305 |
TUnitTest_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
306 |
}; // CUnitTest_RunTests_UnitTest
|
sl@0
|
307 |
|
sl@0
|
308 |
// ______________________________________________________________________________
|
sl@0
|
309 |
//
|
sl@0
|
310 |
/**
|
sl@0
|
311 |
@internalComponent
|
sl@0
|
312 |
|
sl@0
|
313 |
Comments : Unit Test for AllOther on CUnitTest, the class under test.
|
sl@0
|
314 |
*/
|
sl@0
|
315 |
class CUnitTest_AllOther_UnitTest : public CUnitTest
|
sl@0
|
316 |
{
|
sl@0
|
317 |
public:
|
sl@0
|
318 |
/**
|
sl@0
|
319 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
320 |
MUnitTestObserver& aObserver)
|
sl@0
|
321 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
322 |
cleanup stack.
|
sl@0
|
323 |
Error Condition : Leaves with the error code.
|
sl@0
|
324 |
@leave KErrNoMemory
|
sl@0
|
325 |
@since 7.0
|
sl@0
|
326 |
@param aDataLogger The output logging object.
|
sl@0
|
327 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
328 |
@return CUnitTest_AllOther_UnitTest* The constructed object.
|
sl@0
|
329 |
@pre None.
|
sl@0
|
330 |
@post CUnitTest_AllOther_UnitTest is fully constructed, and initialised.
|
sl@0
|
331 |
*/
|
sl@0
|
332 |
static CUnitTest_AllOther_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
333 |
MUnitTestObserver& aObserver);
|
sl@0
|
334 |
|
sl@0
|
335 |
/**
|
sl@0
|
336 |
@fn RunError(TInt aError)
|
sl@0
|
337 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
338 |
to restore the CUnitTest_AllOther_UnitTest
|
sl@0
|
339 |
object to a sensible state.
|
sl@0
|
340 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
341 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
342 |
@since 7.0
|
sl@0
|
343 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
344 |
@see CUnitTest::RunError()
|
sl@0
|
345 |
@pre CUnitTest_AllOther_UnitTest is fully constructed, and initialised.
|
sl@0
|
346 |
@post The object has been restored to a sensible state.
|
sl@0
|
347 |
*/
|
sl@0
|
348 |
inline TInt RunError(TInt aError);
|
sl@0
|
349 |
|
sl@0
|
350 |
/**
|
sl@0
|
351 |
@fn ~CUnitTest_AllOther_UnitTest()
|
sl@0
|
352 |
Intended Usage : Standard Destructor.
|
sl@0
|
353 |
Error Condition : None.
|
sl@0
|
354 |
@since 7.0
|
sl@0
|
355 |
@pre CUnitTest_AllOther_UnitTest is fully constructed.
|
sl@0
|
356 |
@post CUnitTest_AllOther_UnitTest is fully destroyed.
|
sl@0
|
357 |
*/
|
sl@0
|
358 |
~CUnitTest_AllOther_UnitTest();
|
sl@0
|
359 |
|
sl@0
|
360 |
private:
|
sl@0
|
361 |
/**
|
sl@0
|
362 |
@fn CUnitTest_AllOther_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
363 |
MUnitTestObserver& aObserver)
|
sl@0
|
364 |
Intended Usage : Default constructor.
|
sl@0
|
365 |
Error Condition : None.
|
sl@0
|
366 |
@since 7.0
|
sl@0
|
367 |
@param aDataLogger The output logging object.
|
sl@0
|
368 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
369 |
@param aStateAccessor WhiteBox state access to the CUnitTest class.
|
sl@0
|
370 |
@pre None.
|
sl@0
|
371 |
@post CUnitTest_AllOther_UnitTest is fully constructed.
|
sl@0
|
372 |
*/
|
sl@0
|
373 |
inline CUnitTest_AllOther_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
374 |
MUnitTestObserver& aObserver);
|
sl@0
|
375 |
|
sl@0
|
376 |
/**
|
sl@0
|
377 |
@fn void ConstructL()
|
sl@0
|
378 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
379 |
to complete the object initialisation.
|
sl@0
|
380 |
Error Condition : Leaves with an error code.
|
sl@0
|
381 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
382 |
@since 7.0
|
sl@0
|
383 |
@return None
|
sl@0
|
384 |
@pre CUnitTest_AllOther_UnitTest is fully constructed.
|
sl@0
|
385 |
@post CUnitTest_AllOther_UnitTest is fully initialised.
|
sl@0
|
386 |
*/
|
sl@0
|
387 |
void ConstructL();
|
sl@0
|
388 |
|
sl@0
|
389 |
/**
|
sl@0
|
390 |
The context of the Unit Test.
|
sl@0
|
391 |
i.e The CUnitTest class tested by this UnitTest's transitions.
|
sl@0
|
392 |
*/
|
sl@0
|
393 |
CUnitTest_UnitTestContext* iUTContext;
|
sl@0
|
394 |
TUnitTest_StateAccessor* iStateAccessor;
|
sl@0
|
395 |
// C'tor, d'tor, and method transition validators
|
sl@0
|
396 |
TUnitTest_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
397 |
TUnitTest_AddTransition_TransitionValidator* iAddTransitionValidator;
|
sl@0
|
398 |
TUnitTest_AddBlockingTransition_TransitionValidator* iAddBlockingTransitionValidator;
|
sl@0
|
399 |
TUnitTest_AddLeaveErrorCode_TransitionValidator* iAddLeaveErrorCodeValidator;
|
sl@0
|
400 |
TUnitTest_UnitTestName_TransitionValidator* iUnitTestNameValidator;
|
sl@0
|
401 |
TUnitTest_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
402 |
}; // CUnitTest_AllOther_UnitTest
|
sl@0
|
403 |
|
sl@0
|
404 |
|
sl@0
|
405 |
#endif // __UNITTESTUNITTEST_H__
|