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 |
// Definition of the CDiscoverer Unit Test classes.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __DISCOVERERUNITTEST_H__
|
sl@0
|
19 |
#define __DISCOVERERUNITTEST_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <test_bed/testbeddefinitions.h>
|
sl@0
|
23 |
#include "DiscovererStateAccessor.h"
|
sl@0
|
24 |
#include "DiscovererTransitionValidation.h"
|
sl@0
|
25 |
#include "DiscovererTransitions.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
// ______________________________________________________________________________
|
sl@0
|
28 |
//
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
|
sl@0
|
32 |
Comments : Unit Test for CreateAndDestroy on CDiscoverer, the class under test.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class CDiscoverer_CreateAndDestroy_UnitTest : public CUnitTest
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
39 |
MUnitTestObserver& aObserver)
|
sl@0
|
40 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
41 |
cleanup stack.
|
sl@0
|
42 |
Error Condition : Leaves with the error code.
|
sl@0
|
43 |
@leave KErrNoMemory
|
sl@0
|
44 |
@since 7.0
|
sl@0
|
45 |
@param aDataLogger The output logging object.
|
sl@0
|
46 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
47 |
@return CDiscoverer_CreateAndDestroy_UnitTest* The constructed object.
|
sl@0
|
48 |
@pre None.
|
sl@0
|
49 |
@post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
static CDiscoverer_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
52 |
MUnitTestObserver& aObserver);
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
@fn RunError(TInt aError)
|
sl@0
|
56 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
57 |
to restore the CDiscoverer_CreateAndDestroy_UnitTest
|
sl@0
|
58 |
object to a sensible state.
|
sl@0
|
59 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
60 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
61 |
@since 7.0
|
sl@0
|
62 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
63 |
@see CUnitTest::RunError()
|
sl@0
|
64 |
@pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised.
|
sl@0
|
65 |
@post The object has been restored to a sensible state.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
inline TInt RunError(TInt aError);
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
@fn ~CDiscoverer_CreateAndDestroy_UnitTest()
|
sl@0
|
71 |
Intended Usage : Standard Destructor.
|
sl@0
|
72 |
Error Condition : None.
|
sl@0
|
73 |
@since 7.0
|
sl@0
|
74 |
@pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
75 |
@post CDiscoverer_CreateAndDestroy_UnitTest is fully destroyed.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
~CDiscoverer_CreateAndDestroy_UnitTest();
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
@fn PrepareUnitTestL()
|
sl@0
|
81 |
Intended Usage : Called by test framework just before test is run to allow
|
sl@0
|
82 |
any test preparation to take place.
|
sl@0
|
83 |
Error Condition : Leaves with an error code.
|
sl@0
|
84 |
@leave KErrNoMemory
|
sl@0
|
85 |
@since 7.0
|
sl@0
|
86 |
@pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
87 |
@post This unit test is ready to run.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
void PrepareUnitTestL();
|
sl@0
|
90 |
|
sl@0
|
91 |
private:
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
@fn CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
94 |
MUnitTestObserver& aObserver)
|
sl@0
|
95 |
Intended Usage : Default constructor.
|
sl@0
|
96 |
Error Condition : None.
|
sl@0
|
97 |
@since 7.0
|
sl@0
|
98 |
@param aDataLogger The output logging object.
|
sl@0
|
99 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
100 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
101 |
@pre None.
|
sl@0
|
102 |
@post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
inline CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
105 |
MUnitTestObserver& aObserver);
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
@fn void ConstructL()
|
sl@0
|
109 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
110 |
to complete the object initialisation.
|
sl@0
|
111 |
Error Condition : Leaves with an error code.
|
sl@0
|
112 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
113 |
@since 7.0
|
sl@0
|
114 |
@return None
|
sl@0
|
115 |
@pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
116 |
@post CDiscoverer_CreateAndDestroy_UnitTest is fully initialised.
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
void ConstructL();
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
The context of the Unit Test.
|
sl@0
|
122 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
125 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
126 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
127 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
128 |
}; // CDiscoverer_CreateAndDestroy_UnitTest
|
sl@0
|
129 |
|
sl@0
|
130 |
// ______________________________________________________________________________
|
sl@0
|
131 |
//
|
sl@0
|
132 |
/**
|
sl@0
|
133 |
@internalComponent
|
sl@0
|
134 |
|
sl@0
|
135 |
Comments : Unit Test for MountDrive on CDiscoverer, the class under test.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
class CDiscoverer_MountDrive_UnitTest : public CUnitTest
|
sl@0
|
138 |
{
|
sl@0
|
139 |
public:
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
142 |
MUnitTestObserver& aObserver)
|
sl@0
|
143 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
144 |
cleanup stack.
|
sl@0
|
145 |
Error Condition : Leaves with the error code.
|
sl@0
|
146 |
@leave KErrNoMemory
|
sl@0
|
147 |
@since 7.0
|
sl@0
|
148 |
@param aDataLogger The output logging object.
|
sl@0
|
149 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
150 |
@return CDiscoverer_MountDrive_UnitTest* The constructed object.
|
sl@0
|
151 |
@pre None.
|
sl@0
|
152 |
@post CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised.
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
static CDiscoverer_MountDrive_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
155 |
MUnitTestObserver& aObserver);
|
sl@0
|
156 |
|
sl@0
|
157 |
/**
|
sl@0
|
158 |
@fn RunError(TInt aError)
|
sl@0
|
159 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
160 |
to restore the CDiscoverer_MountDrive_UnitTest
|
sl@0
|
161 |
object to a sensible state.
|
sl@0
|
162 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
163 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
164 |
@since 7.0
|
sl@0
|
165 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
166 |
@see CUnitTest::RunError()
|
sl@0
|
167 |
@pre CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised.
|
sl@0
|
168 |
@post The object has been restored to a sensible state.
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
inline TInt RunError(TInt aError);
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@fn ~CDiscoverer_MountDrive_UnitTest()
|
sl@0
|
174 |
Intended Usage : Standard Destructor.
|
sl@0
|
175 |
Error Condition : None.
|
sl@0
|
176 |
@since 7.0
|
sl@0
|
177 |
@pre CDiscoverer_MountDrive_UnitTest is fully constructed.
|
sl@0
|
178 |
@post CDiscoverer_MountDrive_UnitTest is fully destroyed.
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
~CDiscoverer_MountDrive_UnitTest();
|
sl@0
|
181 |
|
sl@0
|
182 |
private:
|
sl@0
|
183 |
/**
|
sl@0
|
184 |
@fn CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
185 |
MUnitTestObserver& aObserver)
|
sl@0
|
186 |
Intended Usage : Default constructor.
|
sl@0
|
187 |
Error Condition : None.
|
sl@0
|
188 |
@since 7.0
|
sl@0
|
189 |
@param aDataLogger The output logging object.
|
sl@0
|
190 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
191 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
192 |
@pre None.
|
sl@0
|
193 |
@post CDiscoverer_MountDrive_UnitTest is fully constructed.
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
inline CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
196 |
MUnitTestObserver& aObserver);
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
@fn void ConstructL()
|
sl@0
|
200 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
201 |
to complete the object initialisation.
|
sl@0
|
202 |
Error Condition : Leaves with an error code.
|
sl@0
|
203 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
204 |
@since 7.0
|
sl@0
|
205 |
@return None
|
sl@0
|
206 |
@pre CDiscoverer_MountDrive_UnitTest is fully constructed.
|
sl@0
|
207 |
@post CDiscoverer_MountDrive_UnitTest is fully initialised.
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
void ConstructL();
|
sl@0
|
210 |
|
sl@0
|
211 |
/**
|
sl@0
|
212 |
The context of the Unit Test.
|
sl@0
|
213 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
214 |
*/
|
sl@0
|
215 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
216 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
217 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
218 |
TDiscoverer_MountDriveL_TransitionValidator* iMountValidator;
|
sl@0
|
219 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
220 |
}; // CDiscoverer_MountDrive_UnitTest
|
sl@0
|
221 |
|
sl@0
|
222 |
// ______________________________________________________________________________
|
sl@0
|
223 |
//
|
sl@0
|
224 |
/**
|
sl@0
|
225 |
@internalComponent
|
sl@0
|
226 |
|
sl@0
|
227 |
Comments : Unit Test for UnmountDrive on CDiscoverer, the class under test.
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
class CDiscoverer_UnmountDrive_UnitTest : public CUnitTest
|
sl@0
|
230 |
{
|
sl@0
|
231 |
public:
|
sl@0
|
232 |
/**
|
sl@0
|
233 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
234 |
MUnitTestObserver& aObserver)
|
sl@0
|
235 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
236 |
cleanup stack.
|
sl@0
|
237 |
Error Condition : Leaves with the error code.
|
sl@0
|
238 |
@leave KErrNoMemory
|
sl@0
|
239 |
@since 7.0
|
sl@0
|
240 |
@param aDataLogger The output logging object.
|
sl@0
|
241 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
242 |
@return CDiscoverer_UnmountDrive_UnitTest* The constructed object.
|
sl@0
|
243 |
@pre None.
|
sl@0
|
244 |
@post CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised.
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
static CDiscoverer_UnmountDrive_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
247 |
MUnitTestObserver& aObserver);
|
sl@0
|
248 |
|
sl@0
|
249 |
/**
|
sl@0
|
250 |
@fn RunError(TInt aError)
|
sl@0
|
251 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
252 |
to restore the CDiscoverer_UnmountDrive_UnitTest
|
sl@0
|
253 |
object to a sensible state.
|
sl@0
|
254 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
255 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
256 |
@since 7.0
|
sl@0
|
257 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
258 |
@see CUnitTest::RunError()
|
sl@0
|
259 |
@pre CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised.
|
sl@0
|
260 |
@post The object has been restored to a sensible state.
|
sl@0
|
261 |
*/
|
sl@0
|
262 |
inline TInt RunError(TInt aError);
|
sl@0
|
263 |
|
sl@0
|
264 |
/**
|
sl@0
|
265 |
@fn ~CDiscoverer_UnmountDrive_UnitTest()
|
sl@0
|
266 |
Intended Usage : Standard Destructor.
|
sl@0
|
267 |
Error Condition : None.
|
sl@0
|
268 |
@since 7.0
|
sl@0
|
269 |
@pre CDiscoverer_UnmountDrive_UnitTest is fully constructed.
|
sl@0
|
270 |
@post CDiscoverer_UnmountDrive_UnitTest is fully destroyed.
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
~CDiscoverer_UnmountDrive_UnitTest();
|
sl@0
|
273 |
|
sl@0
|
274 |
private:
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
@fn CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
277 |
MUnitTestObserver& aObserver)
|
sl@0
|
278 |
Intended Usage : Default constructor.
|
sl@0
|
279 |
Error Condition : None.
|
sl@0
|
280 |
@since 7.0
|
sl@0
|
281 |
@param aDataLogger The output logging object.
|
sl@0
|
282 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
283 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
284 |
@pre None.
|
sl@0
|
285 |
@post CDiscoverer_UnmountDrive_UnitTest is fully constructed.
|
sl@0
|
286 |
*/
|
sl@0
|
287 |
inline CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
288 |
MUnitTestObserver& aObserver);
|
sl@0
|
289 |
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
@fn void ConstructL()
|
sl@0
|
292 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
293 |
to complete the object initialisation.
|
sl@0
|
294 |
Error Condition : Leaves with an error code.
|
sl@0
|
295 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
296 |
@since 7.0
|
sl@0
|
297 |
@return None
|
sl@0
|
298 |
@pre CDiscoverer_UnmountDrive_UnitTest is fully constructed.
|
sl@0
|
299 |
@post CDiscoverer_UnmountDrive_UnitTest is fully initialised.
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
void ConstructL();
|
sl@0
|
302 |
|
sl@0
|
303 |
/**
|
sl@0
|
304 |
The context of the Unit Test.
|
sl@0
|
305 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
306 |
*/
|
sl@0
|
307 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
308 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
309 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
310 |
TDiscoverer_UnmountDrive_TransitionValidator* iUnmountValidator;
|
sl@0
|
311 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
312 |
}; // CDiscoverer_UnmountDrive_UnitTest
|
sl@0
|
313 |
|
sl@0
|
314 |
// ______________________________________________________________________________
|
sl@0
|
315 |
//
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
@internalComponent
|
sl@0
|
318 |
|
sl@0
|
319 |
Comments : Unit Test for IsValidEntryL on CDiscoverer, the class under test.
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
class CDiscoverer_IsValidEntryL_UnitTest : public CUnitTest
|
sl@0
|
322 |
{
|
sl@0
|
323 |
public:
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
326 |
MUnitTestObserver& aObserver)
|
sl@0
|
327 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
328 |
cleanup stack.
|
sl@0
|
329 |
Error Condition : Leaves with the error code.
|
sl@0
|
330 |
@leave KErrNoMemory
|
sl@0
|
331 |
@since 7.0
|
sl@0
|
332 |
@param aDataLogger The output logging object.
|
sl@0
|
333 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
334 |
@return CDiscoverer_IsValidEntryL_UnitTest* The constructed object.
|
sl@0
|
335 |
@pre None.
|
sl@0
|
336 |
@post CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised.
|
sl@0
|
337 |
*/
|
sl@0
|
338 |
static CDiscoverer_IsValidEntryL_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
339 |
MUnitTestObserver& aObserver);
|
sl@0
|
340 |
|
sl@0
|
341 |
/**
|
sl@0
|
342 |
@fn RunError(TInt aError)
|
sl@0
|
343 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
344 |
to restore the CDiscoverer_IsValidEntryL_UnitTest
|
sl@0
|
345 |
object to a sensible state.
|
sl@0
|
346 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
347 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
348 |
@since 7.0
|
sl@0
|
349 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
350 |
@see CUnitTest::RunError()
|
sl@0
|
351 |
@pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised.
|
sl@0
|
352 |
@post The object has been restored to a sensible state.
|
sl@0
|
353 |
*/
|
sl@0
|
354 |
inline TInt RunError(TInt aError);
|
sl@0
|
355 |
|
sl@0
|
356 |
/**
|
sl@0
|
357 |
@fn ~CDiscoverer_IsValidEntryL_UnitTest()
|
sl@0
|
358 |
Intended Usage : Standard Destructor.
|
sl@0
|
359 |
Error Condition : None.
|
sl@0
|
360 |
@since 7.0
|
sl@0
|
361 |
@pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
|
sl@0
|
362 |
@post CDiscoverer_IsValidEntryL_UnitTest is fully destroyed.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
~CDiscoverer_IsValidEntryL_UnitTest();
|
sl@0
|
365 |
|
sl@0
|
366 |
/**
|
sl@0
|
367 |
@fn PrepareUnitTestL()
|
sl@0
|
368 |
Intended Usage : Called by test framework just before test is run to allow
|
sl@0
|
369 |
any test preparation to take place.
|
sl@0
|
370 |
Error Condition :
|
sl@0
|
371 |
@since 7.0
|
sl@0
|
372 |
@pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed.
|
sl@0
|
373 |
@post This unit test is ready to run.
|
sl@0
|
374 |
*/
|
sl@0
|
375 |
void PrepareUnitTestL();
|
sl@0
|
376 |
|
sl@0
|
377 |
private:
|
sl@0
|
378 |
/**
|
sl@0
|
379 |
@fn CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
380 |
MUnitTestObserver& aObserver)
|
sl@0
|
381 |
Intended Usage : Default constructor.
|
sl@0
|
382 |
Error Condition : None.
|
sl@0
|
383 |
@since 7.0
|
sl@0
|
384 |
@param aDataLogger The output logging object.
|
sl@0
|
385 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
386 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
387 |
@pre None.
|
sl@0
|
388 |
@post CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
|
sl@0
|
389 |
*/
|
sl@0
|
390 |
inline CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
391 |
MUnitTestObserver& aObserver);
|
sl@0
|
392 |
|
sl@0
|
393 |
/**
|
sl@0
|
394 |
@fn void ConstructL()
|
sl@0
|
395 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
396 |
to complete the object initialisation.
|
sl@0
|
397 |
Error Condition : Leaves with an error code.
|
sl@0
|
398 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
399 |
@since 7.0
|
sl@0
|
400 |
@return None
|
sl@0
|
401 |
@pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed.
|
sl@0
|
402 |
@post CDiscoverer_IsValidEntryL_UnitTest is fully initialised.
|
sl@0
|
403 |
*/
|
sl@0
|
404 |
void ConstructL();
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
The context of the Unit Test.
|
sl@0
|
408 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
409 |
*/
|
sl@0
|
410 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
411 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
412 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
413 |
TDiscoverer_IsValidEntry_TransitionValidator* iIsValidEntryValidator;
|
sl@0
|
414 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
415 |
}; // CDiscoverer_IsValidEntryL_UnitTest
|
sl@0
|
416 |
|
sl@0
|
417 |
// ______________________________________________________________________________
|
sl@0
|
418 |
//
|
sl@0
|
419 |
/**
|
sl@0
|
420 |
@internalComponent
|
sl@0
|
421 |
|
sl@0
|
422 |
Comments : Unit Test for ProcessEntryL on CDiscoverer, the class under test.
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
class CDiscoverer_ProcessEntryL_UnitTest : public CUnitTest
|
sl@0
|
425 |
{
|
sl@0
|
426 |
public:
|
sl@0
|
427 |
/**
|
sl@0
|
428 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
429 |
MUnitTestObserver& aObserver)
|
sl@0
|
430 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
431 |
cleanup stack.
|
sl@0
|
432 |
Error Condition : Leaves with the error code.
|
sl@0
|
433 |
@leave KErrNoMemory
|
sl@0
|
434 |
@since 7.0
|
sl@0
|
435 |
@param aDataLogger The output logging object.
|
sl@0
|
436 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
437 |
@return CDiscoverer_ProcessEntryL_UnitTest* The constructed object.
|
sl@0
|
438 |
@pre None.
|
sl@0
|
439 |
@post CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised.
|
sl@0
|
440 |
*/
|
sl@0
|
441 |
static CDiscoverer_ProcessEntryL_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
442 |
MUnitTestObserver& aObserver);
|
sl@0
|
443 |
|
sl@0
|
444 |
/**
|
sl@0
|
445 |
@fn RunError(TInt aError)
|
sl@0
|
446 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
447 |
to restore the CDiscoverer_ProcessEntryL_UnitTest
|
sl@0
|
448 |
object to a sensible state.
|
sl@0
|
449 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
450 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
451 |
@since 7.0
|
sl@0
|
452 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
453 |
@see CUnitTest::RunError()
|
sl@0
|
454 |
@pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised.
|
sl@0
|
455 |
@post The object has been restored to a sensible state.
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
inline TInt RunError(TInt aError);
|
sl@0
|
458 |
|
sl@0
|
459 |
/**
|
sl@0
|
460 |
@fn ~CDiscoverer_ProcessEntryL_UnitTest()
|
sl@0
|
461 |
Intended Usage : Standard Destructor.
|
sl@0
|
462 |
Error Condition : None.
|
sl@0
|
463 |
@since 7.0
|
sl@0
|
464 |
@pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
|
sl@0
|
465 |
@post CDiscoverer_ProcessEntryL_UnitTest is fully destroyed.
|
sl@0
|
466 |
*/
|
sl@0
|
467 |
~CDiscoverer_ProcessEntryL_UnitTest();
|
sl@0
|
468 |
|
sl@0
|
469 |
private:
|
sl@0
|
470 |
/**
|
sl@0
|
471 |
@fn CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
472 |
MUnitTestObserver& aObserver)
|
sl@0
|
473 |
Intended Usage : Default constructor.
|
sl@0
|
474 |
Error Condition : None.
|
sl@0
|
475 |
@since 7.0
|
sl@0
|
476 |
@param aDataLogger The output logging object.
|
sl@0
|
477 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
478 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
479 |
@pre None.
|
sl@0
|
480 |
@post CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
|
sl@0
|
481 |
*/
|
sl@0
|
482 |
inline CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
483 |
MUnitTestObserver& aObserver);
|
sl@0
|
484 |
|
sl@0
|
485 |
/**
|
sl@0
|
486 |
@fn void ConstructL()
|
sl@0
|
487 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
488 |
to complete the object initialisation.
|
sl@0
|
489 |
Error Condition : Leaves with an error code.
|
sl@0
|
490 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
491 |
@since 7.0
|
sl@0
|
492 |
@return None
|
sl@0
|
493 |
@pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed.
|
sl@0
|
494 |
@post CDiscoverer_ProcessEntryL_UnitTest is fully initialised.
|
sl@0
|
495 |
*/
|
sl@0
|
496 |
void ConstructL();
|
sl@0
|
497 |
|
sl@0
|
498 |
/**
|
sl@0
|
499 |
The context of the Unit Test.
|
sl@0
|
500 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
501 |
*/
|
sl@0
|
502 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
503 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
504 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
505 |
TDiscoverer_ProcessEntryL_TransitionValidator* iProcessEntryValidator;
|
sl@0
|
506 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
507 |
}; // CDiscoverer_ProcessEntryL_UnitTest
|
sl@0
|
508 |
|
sl@0
|
509 |
// ______________________________________________________________________________
|
sl@0
|
510 |
//
|
sl@0
|
511 |
/**
|
sl@0
|
512 |
@internalComponent
|
sl@0
|
513 |
|
sl@0
|
514 |
Comments : Unit Test for CompleteNotificationProcessing on CDiscoverer, the class under test.
|
sl@0
|
515 |
*/
|
sl@0
|
516 |
class CDiscoverer_CompleteNotificationProcessing_UnitTest : public CUnitTest
|
sl@0
|
517 |
{
|
sl@0
|
518 |
public:
|
sl@0
|
519 |
/**
|
sl@0
|
520 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
521 |
MUnitTestObserver& aObserver)
|
sl@0
|
522 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
523 |
cleanup stack.
|
sl@0
|
524 |
Error Condition : Leaves with the error code.
|
sl@0
|
525 |
@leave KErrNoMemory
|
sl@0
|
526 |
@since 7.0
|
sl@0
|
527 |
@param aDataLogger The output logging object.
|
sl@0
|
528 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
529 |
@return CDiscoverer_CompleteNotificationProcessing_UnitTest* The constructed object.
|
sl@0
|
530 |
@pre None.
|
sl@0
|
531 |
@post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised.
|
sl@0
|
532 |
*/
|
sl@0
|
533 |
static CDiscoverer_CompleteNotificationProcessing_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
534 |
MUnitTestObserver& aObserver);
|
sl@0
|
535 |
|
sl@0
|
536 |
/**
|
sl@0
|
537 |
@fn RunError(TInt aError)
|
sl@0
|
538 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
539 |
to restore the CDiscoverer_CompleteNotificationProcessing_UnitTest
|
sl@0
|
540 |
object to a sensible state.
|
sl@0
|
541 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
542 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
543 |
@since 7.0
|
sl@0
|
544 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
545 |
@see CUnitTest::RunError()
|
sl@0
|
546 |
@pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised.
|
sl@0
|
547 |
@post The object has been restored to a sensible state.
|
sl@0
|
548 |
*/
|
sl@0
|
549 |
inline TInt RunError(TInt aError);
|
sl@0
|
550 |
|
sl@0
|
551 |
/**
|
sl@0
|
552 |
@fn ~CDiscoverer_CompleteNotificationProcessing_UnitTest()
|
sl@0
|
553 |
Intended Usage : Standard Destructor.
|
sl@0
|
554 |
Error Condition : None.
|
sl@0
|
555 |
@since 7.0
|
sl@0
|
556 |
@pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
|
sl@0
|
557 |
@post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully destroyed.
|
sl@0
|
558 |
*/
|
sl@0
|
559 |
~CDiscoverer_CompleteNotificationProcessing_UnitTest();
|
sl@0
|
560 |
|
sl@0
|
561 |
private:
|
sl@0
|
562 |
/**
|
sl@0
|
563 |
@fn CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
564 |
MUnitTestObserver& aObserver)
|
sl@0
|
565 |
Intended Usage : Default constructor.
|
sl@0
|
566 |
Error Condition : None.
|
sl@0
|
567 |
@since 7.0
|
sl@0
|
568 |
@param aDataLogger The output logging object.
|
sl@0
|
569 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
570 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
571 |
@pre None.
|
sl@0
|
572 |
@post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
|
sl@0
|
573 |
*/
|
sl@0
|
574 |
inline CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
575 |
MUnitTestObserver& aObserver);
|
sl@0
|
576 |
|
sl@0
|
577 |
/**
|
sl@0
|
578 |
@fn void ConstructL()
|
sl@0
|
579 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
580 |
to complete the object initialisation.
|
sl@0
|
581 |
Error Condition : Leaves with an error code.
|
sl@0
|
582 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
583 |
@since 7.0
|
sl@0
|
584 |
@return None
|
sl@0
|
585 |
@pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed.
|
sl@0
|
586 |
@post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully initialised.
|
sl@0
|
587 |
*/
|
sl@0
|
588 |
void ConstructL();
|
sl@0
|
589 |
|
sl@0
|
590 |
/**
|
sl@0
|
591 |
The context of the Unit Test.
|
sl@0
|
592 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
593 |
*/
|
sl@0
|
594 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
595 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
596 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
597 |
TDiscoverer_CompleteNotificationProcessing_TransitionValidator* iCompleteNotificationProcessingValidator;
|
sl@0
|
598 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
599 |
}; // CDiscoverer_CompleteNotificationProcessing_UnitTest
|
sl@0
|
600 |
|
sl@0
|
601 |
|
sl@0
|
602 |
// ______________________________________________________________________________
|
sl@0
|
603 |
//
|
sl@0
|
604 |
/**
|
sl@0
|
605 |
@internalComponent
|
sl@0
|
606 |
|
sl@0
|
607 |
Comments : Unit Test for Notification on CDiscoverer, the class under test.
|
sl@0
|
608 |
*/
|
sl@0
|
609 |
class CDiscoverer_Notification_UnitTest : public CUnitTest
|
sl@0
|
610 |
{
|
sl@0
|
611 |
public:
|
sl@0
|
612 |
/**
|
sl@0
|
613 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
614 |
MUnitTestObserver& aObserver)
|
sl@0
|
615 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
616 |
cleanup stack.
|
sl@0
|
617 |
Error Condition : Leaves with the error code.
|
sl@0
|
618 |
@leave KErrNoMemory
|
sl@0
|
619 |
@since 7.0
|
sl@0
|
620 |
@param aDataLogger The output logging object.
|
sl@0
|
621 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
622 |
@return CDiscoverer_Notification_UnitTest* The constructed object.
|
sl@0
|
623 |
@pre None.
|
sl@0
|
624 |
@post CDiscoverer_Notification_UnitTest is fully constructed, and initialised.
|
sl@0
|
625 |
*/
|
sl@0
|
626 |
static CDiscoverer_Notification_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
627 |
MUnitTestObserver& aObserver);
|
sl@0
|
628 |
|
sl@0
|
629 |
/**
|
sl@0
|
630 |
@fn RunError(TInt aError)
|
sl@0
|
631 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
632 |
to restore the CDiscoverer_Notification_UnitTest
|
sl@0
|
633 |
object to a sensible state.
|
sl@0
|
634 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
635 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
636 |
@since 7.0
|
sl@0
|
637 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
638 |
@see CUnitTest::RunError()
|
sl@0
|
639 |
@pre CDiscoverer_Notification_UnitTest is fully constructed, and initialised.
|
sl@0
|
640 |
@post The object has been restored to a sensible state.
|
sl@0
|
641 |
*/
|
sl@0
|
642 |
inline TInt RunError(TInt aError);
|
sl@0
|
643 |
|
sl@0
|
644 |
/**
|
sl@0
|
645 |
@fn ~CDiscoverer_Notification_UnitTest()
|
sl@0
|
646 |
Intended Usage : Standard Destructor.
|
sl@0
|
647 |
Error Condition : None.
|
sl@0
|
648 |
@since 7.0
|
sl@0
|
649 |
@pre CDiscoverer_Notification_UnitTest is fully constructed.
|
sl@0
|
650 |
@post CDiscoverer_Notification_UnitTest is fully destroyed.
|
sl@0
|
651 |
*/
|
sl@0
|
652 |
~CDiscoverer_Notification_UnitTest();
|
sl@0
|
653 |
|
sl@0
|
654 |
private:
|
sl@0
|
655 |
/**
|
sl@0
|
656 |
@fn CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
657 |
MUnitTestObserver& aObserver)
|
sl@0
|
658 |
Intended Usage : Default constructor.
|
sl@0
|
659 |
Error Condition : None.
|
sl@0
|
660 |
@since 7.0
|
sl@0
|
661 |
@param aDataLogger The output logging object.
|
sl@0
|
662 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
663 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
664 |
@pre None.
|
sl@0
|
665 |
@post CDiscoverer_Notification_UnitTest is fully constructed.
|
sl@0
|
666 |
*/
|
sl@0
|
667 |
inline CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
668 |
MUnitTestObserver& aObserver);
|
sl@0
|
669 |
|
sl@0
|
670 |
/**
|
sl@0
|
671 |
@fn void ConstructL()
|
sl@0
|
672 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
673 |
to complete the object initialisation.
|
sl@0
|
674 |
Error Condition : Leaves with an error code.
|
sl@0
|
675 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
676 |
@since 7.0
|
sl@0
|
677 |
@return None
|
sl@0
|
678 |
@pre CDiscoverer_Notification_UnitTest is fully constructed.
|
sl@0
|
679 |
@post CDiscoverer_Notification_UnitTest is fully initialised.
|
sl@0
|
680 |
*/
|
sl@0
|
681 |
void ConstructL();
|
sl@0
|
682 |
|
sl@0
|
683 |
/**
|
sl@0
|
684 |
The context of the Unit Test.
|
sl@0
|
685 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
686 |
*/
|
sl@0
|
687 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
688 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
689 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
690 |
TDiscoverer_Notification_TransitionValidator* iNotificationValidator;
|
sl@0
|
691 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
692 |
}; // CDiscoverer_Notification_UnitTest
|
sl@0
|
693 |
|
sl@0
|
694 |
|
sl@0
|
695 |
|
sl@0
|
696 |
// ______________________________________________________________________________
|
sl@0
|
697 |
//
|
sl@0
|
698 |
/**
|
sl@0
|
699 |
@internalComponent
|
sl@0
|
700 |
|
sl@0
|
701 |
Comments : Unit Test for SuspendResume on CDiscoverer, the class under test.
|
sl@0
|
702 |
|
sl@0
|
703 |
*/
|
sl@0
|
704 |
class CDiscoverer_SuspendResume_UnitTest : public CUnitTest
|
sl@0
|
705 |
{
|
sl@0
|
706 |
public:
|
sl@0
|
707 |
/**
|
sl@0
|
708 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
709 |
MUnitTestObserver& aObserver)
|
sl@0
|
710 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
711 |
cleanup stack.
|
sl@0
|
712 |
Error Condition : Leaves with the error code.
|
sl@0
|
713 |
@leave KErrNoMemory
|
sl@0
|
714 |
@since 7.0
|
sl@0
|
715 |
@param aDataLogger The output logging object.
|
sl@0
|
716 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
717 |
@return CDiscoverer_SuspendResume_UnitTest* The constructed object.
|
sl@0
|
718 |
@pre None.
|
sl@0
|
719 |
@post CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised.
|
sl@0
|
720 |
*/
|
sl@0
|
721 |
static CDiscoverer_SuspendResume_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
722 |
MUnitTestObserver& aObserver);
|
sl@0
|
723 |
|
sl@0
|
724 |
/**
|
sl@0
|
725 |
@fn RunError(TInt aError)
|
sl@0
|
726 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
727 |
to restore the CDiscoverer_SuspendResume_UnitTest
|
sl@0
|
728 |
object to a sensible state.
|
sl@0
|
729 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
730 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
731 |
@since 7.0
|
sl@0
|
732 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
733 |
@see CUnitTest::RunError()
|
sl@0
|
734 |
@pre CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised.
|
sl@0
|
735 |
@post The object has been restored to a sensible state.
|
sl@0
|
736 |
*/
|
sl@0
|
737 |
inline TInt RunError(TInt aError);
|
sl@0
|
738 |
|
sl@0
|
739 |
/**
|
sl@0
|
740 |
@fn ~CDiscoverer_SuspendResume_UnitTest()
|
sl@0
|
741 |
Intended Usage : Standard Destructor.
|
sl@0
|
742 |
Error Condition : None.
|
sl@0
|
743 |
@since 7.0
|
sl@0
|
744 |
@pre CDiscoverer_SuspendResume_UnitTest is fully constructed.
|
sl@0
|
745 |
@post CDiscoverer_SuspendResume_UnitTest is fully destroyed.
|
sl@0
|
746 |
*/
|
sl@0
|
747 |
~CDiscoverer_SuspendResume_UnitTest();
|
sl@0
|
748 |
|
sl@0
|
749 |
private:
|
sl@0
|
750 |
/**
|
sl@0
|
751 |
@fn CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
752 |
MUnitTestObserver& aObserver)
|
sl@0
|
753 |
Intended Usage : Default constructor.
|
sl@0
|
754 |
Error Condition : None.
|
sl@0
|
755 |
@since 7.0
|
sl@0
|
756 |
@param aDataLogger The output logging object.
|
sl@0
|
757 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
758 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
759 |
@pre None.
|
sl@0
|
760 |
@post CDiscoverer_SuspendResume_UnitTest is fully constructed.
|
sl@0
|
761 |
*/
|
sl@0
|
762 |
inline CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
763 |
MUnitTestObserver& aObserver);
|
sl@0
|
764 |
|
sl@0
|
765 |
/**
|
sl@0
|
766 |
@fn void ConstructL()
|
sl@0
|
767 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
768 |
to complete the object initialisation.
|
sl@0
|
769 |
Error Condition : Leaves with an error code.
|
sl@0
|
770 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
771 |
@since 7.0
|
sl@0
|
772 |
@return None
|
sl@0
|
773 |
@pre CDiscoverer_SuspendResume_UnitTest is fully constructed.
|
sl@0
|
774 |
@post CDiscoverer_SuspendResume_UnitTest is fully initialised.
|
sl@0
|
775 |
*/
|
sl@0
|
776 |
void ConstructL();
|
sl@0
|
777 |
|
sl@0
|
778 |
/**
|
sl@0
|
779 |
The context of the Unit Test.
|
sl@0
|
780 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
781 |
*/
|
sl@0
|
782 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
783 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
784 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
785 |
TDiscoverer_Notification_TransitionValidator* iNotificationValidator;
|
sl@0
|
786 |
TDiscoverer_Suspend_TransitionValidator* iSuspendValidator;
|
sl@0
|
787 |
TDiscoverer_Resume_TransitionValidator* iResumeValidator;
|
sl@0
|
788 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
789 |
}; // CDiscoverer_SuspendResume_UnitTest
|
sl@0
|
790 |
|
sl@0
|
791 |
// ______________________________________________________________________________
|
sl@0
|
792 |
//
|
sl@0
|
793 |
/**
|
sl@0
|
794 |
@internalComponent
|
sl@0
|
795 |
|
sl@0
|
796 |
Comments : Unit Test for ScanDirectory on CDiscoverer, the class under test.
|
sl@0
|
797 |
*/
|
sl@0
|
798 |
class CDiscoverer_ScanDirectory_UnitTest : public CUnitTest
|
sl@0
|
799 |
{
|
sl@0
|
800 |
public:
|
sl@0
|
801 |
/**
|
sl@0
|
802 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
803 |
MUnitTestObserver& aObserver)
|
sl@0
|
804 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
805 |
cleanup stack.
|
sl@0
|
806 |
Error Condition : Leaves with the error code.
|
sl@0
|
807 |
@leave KErrNoMemory
|
sl@0
|
808 |
@since 7.0
|
sl@0
|
809 |
@param aDataLogger The output logging object.
|
sl@0
|
810 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
811 |
@return CDiscoverer_ScanDirectory_UnitTest* The constructed object.
|
sl@0
|
812 |
@pre None.
|
sl@0
|
813 |
@post CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised.
|
sl@0
|
814 |
*/
|
sl@0
|
815 |
static CDiscoverer_ScanDirectory_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
816 |
MUnitTestObserver& aObserver);
|
sl@0
|
817 |
|
sl@0
|
818 |
/**
|
sl@0
|
819 |
@fn RunError(TInt aError)
|
sl@0
|
820 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
821 |
to restore the CDiscoverer_ScanDirectory_UnitTest
|
sl@0
|
822 |
object to a sensible state.
|
sl@0
|
823 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
824 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
825 |
@since 7.0
|
sl@0
|
826 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
827 |
@see CUnitTest::RunError()
|
sl@0
|
828 |
@pre CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised.
|
sl@0
|
829 |
@post The object has been restored to a sensible state.
|
sl@0
|
830 |
*/
|
sl@0
|
831 |
inline TInt RunError(TInt aError);
|
sl@0
|
832 |
|
sl@0
|
833 |
/**
|
sl@0
|
834 |
@fn ~CDiscoverer_ScanDirectory_UnitTest()
|
sl@0
|
835 |
Intended Usage : Standard Destructor.
|
sl@0
|
836 |
Error Condition : None.
|
sl@0
|
837 |
@since 7.0
|
sl@0
|
838 |
@pre CDiscoverer_ScanDirectory_UnitTest is fully constructed.
|
sl@0
|
839 |
@post CDiscoverer_ScanDirectory_UnitTest is fully destroyed.
|
sl@0
|
840 |
*/
|
sl@0
|
841 |
~CDiscoverer_ScanDirectory_UnitTest();
|
sl@0
|
842 |
|
sl@0
|
843 |
private:
|
sl@0
|
844 |
/**
|
sl@0
|
845 |
@fn CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
846 |
MUnitTestObserver& aObserver)
|
sl@0
|
847 |
Intended Usage : Default constructor.
|
sl@0
|
848 |
Error Condition : None.
|
sl@0
|
849 |
@since 7.0
|
sl@0
|
850 |
@param aDataLogger The output logging object.
|
sl@0
|
851 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
852 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
853 |
@pre None.
|
sl@0
|
854 |
@post CDiscoverer_ScanDirectory_UnitTest is fully constructed.
|
sl@0
|
855 |
*/
|
sl@0
|
856 |
inline CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
857 |
MUnitTestObserver& aObserver);
|
sl@0
|
858 |
|
sl@0
|
859 |
/**
|
sl@0
|
860 |
@fn void ConstructL()
|
sl@0
|
861 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
862 |
to complete the object initialisation.
|
sl@0
|
863 |
Error Condition : Leaves with an error code.
|
sl@0
|
864 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
865 |
@since 7.0
|
sl@0
|
866 |
@return None
|
sl@0
|
867 |
@pre CDiscoverer_ScanDirectory_UnitTest is fully constructed.
|
sl@0
|
868 |
@post CDiscoverer_ScanDirectory_UnitTest is fully initialised.
|
sl@0
|
869 |
*/
|
sl@0
|
870 |
void ConstructL();
|
sl@0
|
871 |
|
sl@0
|
872 |
/**
|
sl@0
|
873 |
The context of the Unit Test.
|
sl@0
|
874 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
875 |
*/
|
sl@0
|
876 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
877 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
878 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
879 |
TDiscoverer_ScanDirectory_TransitionValidator* iScanDirectoryValidator;
|
sl@0
|
880 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
881 |
}; // CDiscoverer_ScanDirectory_UnitTest
|
sl@0
|
882 |
|
sl@0
|
883 |
|
sl@0
|
884 |
// ______________________________________________________________________________
|
sl@0
|
885 |
//
|
sl@0
|
886 |
/**
|
sl@0
|
887 |
@internalComponent
|
sl@0
|
888 |
|
sl@0
|
889 |
Comments : Unit Test for ScanDirectoryCancel on CDiscoverer, the class under test.
|
sl@0
|
890 |
|
sl@0
|
891 |
*/
|
sl@0
|
892 |
class CDiscoverer_ScanDirectoryCancel_UnitTest : public CUnitTest
|
sl@0
|
893 |
{
|
sl@0
|
894 |
public:
|
sl@0
|
895 |
/**
|
sl@0
|
896 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
897 |
MUnitTestObserver& aObserver)
|
sl@0
|
898 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
899 |
cleanup stack.
|
sl@0
|
900 |
Error Condition : Leaves with the error code.
|
sl@0
|
901 |
@leave KErrNoMemory
|
sl@0
|
902 |
@since 7.0
|
sl@0
|
903 |
@param aDataLogger The output logging object.
|
sl@0
|
904 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
905 |
@return CDiscoverer_ScanDirectoryCancel_UnitTest* The constructed object.
|
sl@0
|
906 |
@pre None.
|
sl@0
|
907 |
@post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised.
|
sl@0
|
908 |
*/
|
sl@0
|
909 |
static CDiscoverer_ScanDirectoryCancel_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
910 |
MUnitTestObserver& aObserver);
|
sl@0
|
911 |
|
sl@0
|
912 |
/**
|
sl@0
|
913 |
@fn RunError(TInt aError)
|
sl@0
|
914 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
915 |
to restore the CDiscoverer_ScanDirectoryCancel_UnitTest
|
sl@0
|
916 |
object to a sensible state.
|
sl@0
|
917 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
918 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
919 |
@since 7.0
|
sl@0
|
920 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
921 |
@see CUnitTest::RunError()
|
sl@0
|
922 |
@pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised.
|
sl@0
|
923 |
@post The object has been restored to a sensible state.
|
sl@0
|
924 |
*/
|
sl@0
|
925 |
inline TInt RunError(TInt aError);
|
sl@0
|
926 |
|
sl@0
|
927 |
/**
|
sl@0
|
928 |
@fn ~CDiscoverer_ScanDirectoryCancel_UnitTest()
|
sl@0
|
929 |
Intended Usage : Standard Destructor.
|
sl@0
|
930 |
Error Condition : None.
|
sl@0
|
931 |
@since 7.0
|
sl@0
|
932 |
@pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
|
sl@0
|
933 |
@post CDiscoverer_ScanDirectoryCancel_UnitTest is fully destroyed.
|
sl@0
|
934 |
*/
|
sl@0
|
935 |
~CDiscoverer_ScanDirectoryCancel_UnitTest();
|
sl@0
|
936 |
|
sl@0
|
937 |
private:
|
sl@0
|
938 |
/**
|
sl@0
|
939 |
@fn CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
940 |
MUnitTestObserver& aObserver)
|
sl@0
|
941 |
Intended Usage : Default constructor.
|
sl@0
|
942 |
Error Condition : None.
|
sl@0
|
943 |
@since 7.0
|
sl@0
|
944 |
@param aDataLogger The output logging object.
|
sl@0
|
945 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
946 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
947 |
@pre None.
|
sl@0
|
948 |
@post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
|
sl@0
|
949 |
*/
|
sl@0
|
950 |
inline CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
951 |
MUnitTestObserver& aObserver);
|
sl@0
|
952 |
|
sl@0
|
953 |
/**
|
sl@0
|
954 |
@fn void ConstructL()
|
sl@0
|
955 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
956 |
to complete the object initialisation.
|
sl@0
|
957 |
Error Condition : Leaves with an error code.
|
sl@0
|
958 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
959 |
@since 7.0
|
sl@0
|
960 |
@return None
|
sl@0
|
961 |
@pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed.
|
sl@0
|
962 |
@post CDiscoverer_ScanDirectoryCancel_UnitTest is fully initialised.
|
sl@0
|
963 |
*/
|
sl@0
|
964 |
void ConstructL();
|
sl@0
|
965 |
|
sl@0
|
966 |
/**
|
sl@0
|
967 |
The context of the Unit Test.
|
sl@0
|
968 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
969 |
*/
|
sl@0
|
970 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
971 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
972 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
973 |
TDiscoverer_ScanDirectoryCancel_TransitionValidator* iScanDirectoryCancelValidator;
|
sl@0
|
974 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
975 |
}; // CDiscoverer_ScanDirectoryCancel_UnitTest
|
sl@0
|
976 |
|
sl@0
|
977 |
|
sl@0
|
978 |
// ______________________________________________________________________________
|
sl@0
|
979 |
//
|
sl@0
|
980 |
/**
|
sl@0
|
981 |
@internalComponent
|
sl@0
|
982 |
|
sl@0
|
983 |
Comments : Unit Test for ScanDirectoryIncrement on CDiscoverer, the class under test.
|
sl@0
|
984 |
*/
|
sl@0
|
985 |
class CDiscoverer_ScanDirectoryIncrement_UnitTest : public CUnitTest
|
sl@0
|
986 |
{
|
sl@0
|
987 |
public:
|
sl@0
|
988 |
/**
|
sl@0
|
989 |
@fn NewL(CDataLogger& aDataLogger,
|
sl@0
|
990 |
MUnitTestObserver& aObserver)
|
sl@0
|
991 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
992 |
cleanup stack.
|
sl@0
|
993 |
Error Condition : Leaves with the error code.
|
sl@0
|
994 |
@leave KErrNoMemory
|
sl@0
|
995 |
@since 7.0
|
sl@0
|
996 |
@param aDataLogger The output logging object.
|
sl@0
|
997 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
998 |
@return CDiscoverer_ScanDirectoryIncrement_UnitTest* The constructed object.
|
sl@0
|
999 |
@pre None.
|
sl@0
|
1000 |
@post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised.
|
sl@0
|
1001 |
*/
|
sl@0
|
1002 |
static CDiscoverer_ScanDirectoryIncrement_UnitTest* NewL(CDataLogger& aDataLogger,
|
sl@0
|
1003 |
MUnitTestObserver& aObserver);
|
sl@0
|
1004 |
|
sl@0
|
1005 |
/**
|
sl@0
|
1006 |
@fn RunError(TInt aError)
|
sl@0
|
1007 |
Intended Usage : Intercept the panic caused by a RunL leave,
|
sl@0
|
1008 |
to restore the CDiscoverer_ScanDirectoryIncrement_UnitTest
|
sl@0
|
1009 |
object to a sensible state.
|
sl@0
|
1010 |
(called by the Active Scheduler immediately before the Panic).
|
sl@0
|
1011 |
Error Condition : @see CUnitTest::RunError().
|
sl@0
|
1012 |
@since 7.0
|
sl@0
|
1013 |
@return TInt KErrNone if cleanup successful, otherwise
|
sl@0
|
1014 |
@see CUnitTest::RunError()
|
sl@0
|
1015 |
@pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised.
|
sl@0
|
1016 |
@post The object has been restored to a sensible state.
|
sl@0
|
1017 |
*/
|
sl@0
|
1018 |
inline TInt RunError(TInt aError);
|
sl@0
|
1019 |
|
sl@0
|
1020 |
/**
|
sl@0
|
1021 |
@fn ~CDiscoverer_ScanDirectoryIncrement_UnitTest()
|
sl@0
|
1022 |
Intended Usage : Standard Destructor.
|
sl@0
|
1023 |
Error Condition : None.
|
sl@0
|
1024 |
@since 7.0
|
sl@0
|
1025 |
@pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
|
sl@0
|
1026 |
@post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully destroyed.
|
sl@0
|
1027 |
*/
|
sl@0
|
1028 |
~CDiscoverer_ScanDirectoryIncrement_UnitTest();
|
sl@0
|
1029 |
|
sl@0
|
1030 |
private:
|
sl@0
|
1031 |
/**
|
sl@0
|
1032 |
@fn CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
1033 |
MUnitTestObserver& aObserver)
|
sl@0
|
1034 |
Intended Usage : Default constructor.
|
sl@0
|
1035 |
Error Condition : None.
|
sl@0
|
1036 |
@since 7.0
|
sl@0
|
1037 |
@param aDataLogger The output logging object.
|
sl@0
|
1038 |
@param aObserver The observer of this UnitTest.
|
sl@0
|
1039 |
@param aStateAccessor WhiteBox state access to the CDiscoverer class.
|
sl@0
|
1040 |
@pre None.
|
sl@0
|
1041 |
@post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
|
sl@0
|
1042 |
*/
|
sl@0
|
1043 |
inline CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
1044 |
MUnitTestObserver& aObserver);
|
sl@0
|
1045 |
|
sl@0
|
1046 |
/**
|
sl@0
|
1047 |
@fn void ConstructL()
|
sl@0
|
1048 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
1049 |
to complete the object initialisation.
|
sl@0
|
1050 |
Error Condition : Leaves with an error code.
|
sl@0
|
1051 |
@leave KErrNoMemory, and @see CUnitTest::BaseNewL().
|
sl@0
|
1052 |
@since 7.0
|
sl@0
|
1053 |
@return None
|
sl@0
|
1054 |
@pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed.
|
sl@0
|
1055 |
@post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully initialised.
|
sl@0
|
1056 |
*/
|
sl@0
|
1057 |
void ConstructL();
|
sl@0
|
1058 |
|
sl@0
|
1059 |
/**
|
sl@0
|
1060 |
The context of the Unit Test.
|
sl@0
|
1061 |
i.e The CDiscoverer class tested by this UnitTest's transitions.
|
sl@0
|
1062 |
*/
|
sl@0
|
1063 |
CDiscoverer_UnitTestContext* iUTContext;
|
sl@0
|
1064 |
TDiscoverer_StateAccessor* iStateAccessor;
|
sl@0
|
1065 |
TDiscoverer_Ctor_TransitionValidator* iCtorValidator;
|
sl@0
|
1066 |
TDiscoverer_ScanDirectoryIncrement_TransitionValidator* iScanDirectoryIncrementValidator;
|
sl@0
|
1067 |
TDiscoverer_Dtor_TransitionValidator* iDtorValidator;
|
sl@0
|
1068 |
}; // CDiscoverer_ScanDirectoryIncrement_UnitTest
|
sl@0
|
1069 |
|
sl@0
|
1070 |
#include "DiscovererUnitTest.inl"
|
sl@0
|
1071 |
|
sl@0
|
1072 |
#endif // __DISCOVERERUNITTEST_H__
|
sl@0
|
1073 |
|