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 implementaition of the unit tests for the CRegistryData class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
const TUid KCExampleInterfaceUid = {0x10009DC0};
|
sl@0
|
19 |
const TUid KCExampleInterfaceImp = {0x10009DC3};
|
sl@0
|
20 |
|
sl@0
|
21 |
// ______________________________________________________________________________
|
sl@0
|
22 |
//
|
sl@0
|
23 |
_LIT(KRegistryDataCreateAndDestroyUnitTest,"CRegistryData_CreateAndDestroy_UnitTest");
|
sl@0
|
24 |
|
sl@0
|
25 |
CRegistryData_CreateAndDestroy_UnitTest* CRegistryData_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
26 |
MUnitTestObserver& aObserver)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
CRegistryData_CreateAndDestroy_UnitTest* self =
|
sl@0
|
29 |
new(ELeave) CRegistryData_CreateAndDestroy_UnitTest(aDataLogger,
|
sl@0
|
30 |
aObserver);
|
sl@0
|
31 |
CleanupStack::PushL(self);
|
sl@0
|
32 |
self->ConstructL();
|
sl@0
|
33 |
CleanupStack::Pop();
|
sl@0
|
34 |
return self;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
inline TInt CRegistryData_CreateAndDestroy_UnitTest::RunError(TInt aError)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
40 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
41 |
delete iUTContext;
|
sl@0
|
42 |
delete iStateAccessor;
|
sl@0
|
43 |
delete iCtorValidator;
|
sl@0
|
44 |
delete iDtorValidator;
|
sl@0
|
45 |
return error;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
inline CRegistryData_CreateAndDestroy_UnitTest::~CRegistryData_CreateAndDestroy_UnitTest()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
// Simply delete our test class instance
|
sl@0
|
51 |
delete iUTContext;
|
sl@0
|
52 |
delete iStateAccessor;
|
sl@0
|
53 |
delete iCtorValidator;
|
sl@0
|
54 |
delete iDtorValidator;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
inline CRegistryData_CreateAndDestroy_UnitTest::CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
58 |
MUnitTestObserver& aObserver)
|
sl@0
|
59 |
: CUnitTest(KRegistryDataCreateAndDestroyUnitTest, aDataLogger, aObserver)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
//Do nothing
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
// Now the Individual transitions need to be added.
|
sl@0
|
65 |
inline void CRegistryData_CreateAndDestroy_UnitTest::ConstructL()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
// Perform the base class initialization
|
sl@0
|
68 |
UnitTestConstructL();
|
sl@0
|
69 |
|
sl@0
|
70 |
// Create the Unit test state accessor
|
sl@0
|
71 |
iStateAccessor = new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
72 |
// Construct the Unit test context.
|
sl@0
|
73 |
iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
|
sl@0
|
74 |
// and a default validator
|
sl@0
|
75 |
iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
76 |
iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
77 |
// Add the Transitions in the order they are to run
|
sl@0
|
78 |
// C'tor first, D'tor last...
|
sl@0
|
79 |
// Examples of C'tor and D'tor transitions on CRegistryData class.
|
sl@0
|
80 |
AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
81 |
AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
void CRegistryData_CreateAndDestroy_UnitTest::PrepareUnitTestL()
|
sl@0
|
85 |
{
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
// ______________________________________________________________________________
|
sl@0
|
89 |
//
|
sl@0
|
90 |
_LIT(KRegistryDataAddDataUnitTest,"CRegistryData_AddData_UnitTest");
|
sl@0
|
91 |
|
sl@0
|
92 |
CRegistryData_AddData_UnitTest* CRegistryData_AddData_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
93 |
MUnitTestObserver& aObserver)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
CRegistryData_AddData_UnitTest* self =
|
sl@0
|
96 |
new(ELeave) CRegistryData_AddData_UnitTest(aDataLogger,
|
sl@0
|
97 |
aObserver);
|
sl@0
|
98 |
CleanupStack::PushL(self);
|
sl@0
|
99 |
self->ConstructL();
|
sl@0
|
100 |
CleanupStack::Pop();
|
sl@0
|
101 |
return self;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
inline TInt CRegistryData_AddData_UnitTest::RunError(TInt aError)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
107 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
108 |
delete iUTContext;
|
sl@0
|
109 |
delete iStateAccessor;
|
sl@0
|
110 |
|
sl@0
|
111 |
delete iCtorValidator;
|
sl@0
|
112 |
delete iSetObserverValidator;
|
sl@0
|
113 |
delete iUndoTemporaryUninstallValidator;
|
sl@0
|
114 |
delete iAddDllDataValidator;
|
sl@0
|
115 |
delete iIsRegisteredValidator;
|
sl@0
|
116 |
delete iUpdateDllDataValidator;
|
sl@0
|
117 |
delete iTemporaryUninstallValidator;
|
sl@0
|
118 |
delete iPersistNowValidator;
|
sl@0
|
119 |
delete iDtorValidator;
|
sl@0
|
120 |
|
sl@0
|
121 |
return error;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
inline CRegistryData_AddData_UnitTest::~CRegistryData_AddData_UnitTest()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
// Simply delete our test class instance
|
sl@0
|
127 |
delete iUTContext;
|
sl@0
|
128 |
delete iStateAccessor;
|
sl@0
|
129 |
|
sl@0
|
130 |
// delete any validators used
|
sl@0
|
131 |
delete iCtorValidator;
|
sl@0
|
132 |
delete iSetObserverValidator;
|
sl@0
|
133 |
delete iUndoTemporaryUninstallValidator;
|
sl@0
|
134 |
delete iAddDllDataValidator;
|
sl@0
|
135 |
delete iIsRegisteredValidator;
|
sl@0
|
136 |
delete iUpdateDllDataValidator;
|
sl@0
|
137 |
delete iTemporaryUninstallValidator;
|
sl@0
|
138 |
delete iPersistNowValidator;
|
sl@0
|
139 |
|
sl@0
|
140 |
delete iDtorValidator;
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
inline CRegistryData_AddData_UnitTest::CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
144 |
MUnitTestObserver& aObserver)
|
sl@0
|
145 |
: CUnitTest(KRegistryDataAddDataUnitTest, aDataLogger, aObserver)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
//Do nothing
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
// Now the Individual transitions need to be added.
|
sl@0
|
151 |
inline void CRegistryData_AddData_UnitTest::ConstructL()
|
sl@0
|
152 |
{
|
sl@0
|
153 |
// Perform the base class initialization
|
sl@0
|
154 |
UnitTestConstructL();
|
sl@0
|
155 |
|
sl@0
|
156 |
// Create the Unit test state accessor
|
sl@0
|
157 |
iStateAccessor = new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
158 |
|
sl@0
|
159 |
// Construct the Unit test context.
|
sl@0
|
160 |
iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger,
|
sl@0
|
161 |
*iStateAccessor,
|
sl@0
|
162 |
*this,
|
sl@0
|
163 |
iFs);
|
sl@0
|
164 |
_LIT(KDDriveLetter, "D");
|
sl@0
|
165 |
iUTContext->iDriveUnit = KDDriveLetter;
|
sl@0
|
166 |
iUTContext->iFoundDriveIndex = -1;
|
sl@0
|
167 |
TUid thirdUid = {0x10009DB1};
|
sl@0
|
168 |
iUTContext->iDllEntry.iType = TUidType(KNullUid, KNullUid, thirdUid);
|
sl@0
|
169 |
iUTContext->iDllData = CRegistryData::CDllData::NewLC(iUTContext->iDllEntry);
|
sl@0
|
170 |
CleanupStack::Pop(iUTContext->iDllData);
|
sl@0
|
171 |
iUTContext->iNewDllData = CRegistryData::CDllData::NewLC(iUTContext->iDllEntry);
|
sl@0
|
172 |
CleanupStack::Pop(iUTContext->iNewDllData);
|
sl@0
|
173 |
|
sl@0
|
174 |
// Add the Transitions in the order they are to run
|
sl@0
|
175 |
// C'tor first, D'tor last...
|
sl@0
|
176 |
iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
177 |
iSetObserverValidator = new(ELeave) TRegistryData_SetPolicyObserver_TransitionValidator(*iUTContext);
|
sl@0
|
178 |
iUndoTemporaryUninstallValidator = new(ELeave) TRegistryData_UndoTemporaryUninstall_TransitionValidator(*iUTContext);
|
sl@0
|
179 |
iAddDllDataValidator = new(ELeave) TRegistryData_AddDllDataL_TransitionValidator(*iUTContext);
|
sl@0
|
180 |
iIsRegisteredValidator = new(ELeave) TRegistryData_IsRegisteredWithDate_TransitionValidator(*iUTContext);
|
sl@0
|
181 |
iUpdateDllDataValidator = new(ELeave) TRegistryData_UpdateDllData_TransitionValidator(*iUTContext);
|
sl@0
|
182 |
iTemporaryUninstallValidator = new(ELeave) TRegistryData_TemporaryUninstall_TransitionValidator(*iUTContext);
|
sl@0
|
183 |
iPersistNowValidator = new(ELeave) TRegistryData_PersistNow_TransitionValidator(*iUTContext);
|
sl@0
|
184 |
iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
185 |
|
sl@0
|
186 |
AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
187 |
AddTransitionL(new(ELeave)CRegistryData_UndoTemporaryUninstallL_Transition(*iUTContext,*iUndoTemporaryUninstallValidator));
|
sl@0
|
188 |
AddTransitionL(new(ELeave)CRegistryData_AddDllDataL_Transition(*iUTContext,*iAddDllDataValidator));
|
sl@0
|
189 |
AddTransitionL(new(ELeave)CRegistryData_IsRegisteredWithDateL_Transition(*iUTContext,*iIsRegisteredValidator));
|
sl@0
|
190 |
AddTransitionL(new(ELeave)CRegistryData_UpdateDllDataL_Transition(*iUTContext,*iUpdateDllDataValidator));
|
sl@0
|
191 |
AddTransitionL(new(ELeave)CRegistryData_TemporaryUninstallL_Transition(*iUTContext,*iTemporaryUninstallValidator));
|
sl@0
|
192 |
AddTransitionL(new(ELeave)CRegistryData_PersistNowL_Transition(*iUTContext,*iPersistNowValidator));
|
sl@0
|
193 |
AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
// ______________________________________________________________________________
|
sl@0
|
197 |
//
|
sl@0
|
198 |
_LIT(KRegistryDataRetrieveInfoUnitTest,"CRegistryData_RetrieveInfo_UnitTest");
|
sl@0
|
199 |
|
sl@0
|
200 |
CRegistryData_RetrieveInfo_UnitTest* CRegistryData_RetrieveInfo_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
201 |
MUnitTestObserver& aObserver)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
CRegistryData_RetrieveInfo_UnitTest* self =
|
sl@0
|
204 |
new(ELeave) CRegistryData_RetrieveInfo_UnitTest(aDataLogger,
|
sl@0
|
205 |
aObserver);
|
sl@0
|
206 |
CleanupStack::PushL(self);
|
sl@0
|
207 |
self->ConstructL();
|
sl@0
|
208 |
CleanupStack::Pop();
|
sl@0
|
209 |
return self;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
inline TInt CRegistryData_RetrieveInfo_UnitTest::RunError(TInt aError)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
215 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
216 |
delete iUTContext;
|
sl@0
|
217 |
delete iStateAccessor;
|
sl@0
|
218 |
/* delete any validators used */
|
sl@0
|
219 |
delete iCtorValidator;
|
sl@0
|
220 |
delete iListImplementationsValidator;
|
sl@0
|
221 |
delete iGetImplementationInformationValidator;
|
sl@0
|
222 |
delete iDtorValidator;
|
sl@0
|
223 |
return error;
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
inline CRegistryData_RetrieveInfo_UnitTest::~CRegistryData_RetrieveInfo_UnitTest()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
// Simply delete our test class instance
|
sl@0
|
229 |
delete iUTContext;
|
sl@0
|
230 |
delete iStateAccessor;
|
sl@0
|
231 |
|
sl@0
|
232 |
delete iCtorValidator;
|
sl@0
|
233 |
delete iListImplementationsValidator;
|
sl@0
|
234 |
delete iGetImplementationInformationValidator;
|
sl@0
|
235 |
delete iDtorValidator;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
inline CRegistryData_RetrieveInfo_UnitTest::CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
239 |
MUnitTestObserver& aObserver)
|
sl@0
|
240 |
: CUnitTest(KRegistryDataRetrieveInfoUnitTest, aDataLogger, aObserver)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
//Do nothing
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
// Now the Individual transitions need to be added.
|
sl@0
|
246 |
inline void CRegistryData_RetrieveInfo_UnitTest::ConstructL()
|
sl@0
|
247 |
{
|
sl@0
|
248 |
// Perform the base class initialization
|
sl@0
|
249 |
UnitTestConstructL();
|
sl@0
|
250 |
|
sl@0
|
251 |
// Create the Unit test state accessor
|
sl@0
|
252 |
iStateAccessor = new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
253 |
|
sl@0
|
254 |
// Construct the Unit test context.
|
sl@0
|
255 |
iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger,
|
sl@0
|
256 |
*iStateAccessor,
|
sl@0
|
257 |
*this,
|
sl@0
|
258 |
iFs);
|
sl@0
|
259 |
iUTContext->iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
|
sl@0
|
260 |
iUTContext->iImplementationUid.iUid = KCExampleInterfaceImp.iUid;
|
sl@0
|
261 |
|
sl@0
|
262 |
// Add the Transitions in the order they are to run
|
sl@0
|
263 |
iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
264 |
iListImplementationsValidator = new(ELeave) TRegistryData_ListImplementations_TransitionValidator(*iUTContext);
|
sl@0
|
265 |
iGetImplementationInformationValidator = new(ELeave) TRegistryData_GetImplementationInformation_TransitionValidator(*iUTContext);
|
sl@0
|
266 |
iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
267 |
|
sl@0
|
268 |
AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
269 |
AddTransitionL(new(ELeave)CRegistryData_ListImplementationsL_Transition(*iUTContext,
|
sl@0
|
270 |
*iListImplementationsValidator));
|
sl@0
|
271 |
AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext,
|
sl@0
|
272 |
*iGetImplementationInformationValidator));
|
sl@0
|
273 |
AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
274 |
|
sl@0
|
275 |
// Add the permissible error codes for failures
|
sl@0
|
276 |
AddLeaveErrorCodeL(KEComErrNoInterfaceIdentified);
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
// ______________________________________________________________________________
|
sl@0
|
280 |
//
|
sl@0
|
281 |
_LIT(KRegistryDataInfoWhileDiscoveringUnitTest,"CRegistryData_GetImplInfoWhileDiscovering_UnitTest");
|
sl@0
|
282 |
|
sl@0
|
283 |
CRegistryData_GetImplInfoWhileDiscovering_UnitTest*
|
sl@0
|
284 |
CRegistryData_GetImplInfoWhileDiscovering_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
285 |
MUnitTestObserver& aObserver)
|
sl@0
|
286 |
{
|
sl@0
|
287 |
CRegistryData_GetImplInfoWhileDiscovering_UnitTest* self =
|
sl@0
|
288 |
new(ELeave) CRegistryData_GetImplInfoWhileDiscovering_UnitTest(aDataLogger,
|
sl@0
|
289 |
aObserver);
|
sl@0
|
290 |
CleanupStack::PushL(self);
|
sl@0
|
291 |
self->ConstructL();
|
sl@0
|
292 |
CleanupStack::Pop(self);
|
sl@0
|
293 |
return self;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
inline TInt CRegistryData_GetImplInfoWhileDiscovering_UnitTest::RunError(TInt aError)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
299 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
300 |
delete iUTContext;
|
sl@0
|
301 |
delete iStateAccessor;
|
sl@0
|
302 |
// delete any validators used
|
sl@0
|
303 |
delete iCtorValidator;
|
sl@0
|
304 |
delete iGetImplInfoValidator;
|
sl@0
|
305 |
delete iDiscoveriesBeginningValidator;
|
sl@0
|
306 |
delete iGetSecondImplInfoValidator;
|
sl@0
|
307 |
delete iDtorValidator;
|
sl@0
|
308 |
|
sl@0
|
309 |
return error;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest::~CRegistryData_GetImplInfoWhileDiscovering_UnitTest()
|
sl@0
|
313 |
{
|
sl@0
|
314 |
// Simply delete our test class instance
|
sl@0
|
315 |
delete iUTContext;
|
sl@0
|
316 |
delete iStateAccessor;
|
sl@0
|
317 |
|
sl@0
|
318 |
// delete any validators used
|
sl@0
|
319 |
delete iCtorValidator;
|
sl@0
|
320 |
delete iGetImplInfoValidator;
|
sl@0
|
321 |
delete iDiscoveriesBeginningValidator;
|
sl@0
|
322 |
delete iGetSecondImplInfoValidator;
|
sl@0
|
323 |
delete iDtorValidator;
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest::
|
sl@0
|
327 |
CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
328 |
MUnitTestObserver& aObserver)
|
sl@0
|
329 |
: CUnitTest(KRegistryDataInfoWhileDiscoveringUnitTest, aDataLogger, aObserver)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
//Do nothing
|
sl@0
|
332 |
}
|
sl@0
|
333 |
|
sl@0
|
334 |
// Now the Individual transitions need to be added.
|
sl@0
|
335 |
inline void CRegistryData_GetImplInfoWhileDiscovering_UnitTest::ConstructL()
|
sl@0
|
336 |
{
|
sl@0
|
337 |
// Perform the base class initialization
|
sl@0
|
338 |
UnitTestConstructL();
|
sl@0
|
339 |
|
sl@0
|
340 |
// Create the Unit test state accessor
|
sl@0
|
341 |
iStateAccessor = new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
342 |
|
sl@0
|
343 |
// Construct the Unit test context.
|
sl@0
|
344 |
iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger,
|
sl@0
|
345 |
*iStateAccessor,
|
sl@0
|
346 |
*this,
|
sl@0
|
347 |
iFs);
|
sl@0
|
348 |
|
sl@0
|
349 |
iUTContext->iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
|
sl@0
|
350 |
iUTContext->iImplementationUid.iUid = KCExampleInterfaceImp.iUid;
|
sl@0
|
351 |
|
sl@0
|
352 |
// Add the Transitions in the order they are to run
|
sl@0
|
353 |
// C'tor first, D'tor last...
|
sl@0
|
354 |
iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
355 |
iGetImplInfoValidator = new(ELeave) TRegistryData_GetImplementationInformation_TransitionValidator(*iUTContext);
|
sl@0
|
356 |
iDiscoveriesBeginningValidator = new(ELeave) TRegistryData_DiscoveriesBeginning_TransitionValidator(*iUTContext);
|
sl@0
|
357 |
iGetSecondImplInfoValidator = new(ELeave) TRegistryData_GetSecondImplInfo_TransitionValidator(*iUTContext);
|
sl@0
|
358 |
iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
359 |
|
sl@0
|
360 |
AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
361 |
AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext,*iGetImplInfoValidator));
|
sl@0
|
362 |
AddTransitionL(new(ELeave)CRegistryData_DiscoveriesBeginning_Transition(*iUTContext,*iDiscoveriesBeginningValidator));
|
sl@0
|
363 |
AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext,*iGetSecondImplInfoValidator));
|
sl@0
|
364 |
AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|