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