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 implementations for the CDataLogger class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "DataLoggerUnitTest.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
// ______________________________________________________________________________
|
sl@0
|
21 |
//
|
sl@0
|
22 |
_LIT(KDataLoggerCreateAndDestroyUnitTest,"CDataLogger_CreateAndDestroy_UnitTest");
|
sl@0
|
23 |
|
sl@0
|
24 |
CDataLogger_CreateAndDestroy_UnitTest* CDataLogger_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
25 |
MUnitTestObserver& aObserver)
|
sl@0
|
26 |
{
|
sl@0
|
27 |
CDataLogger_CreateAndDestroy_UnitTest* self =
|
sl@0
|
28 |
new(ELeave) CDataLogger_CreateAndDestroy_UnitTest(aDataLogger,
|
sl@0
|
29 |
aObserver);
|
sl@0
|
30 |
CleanupStack::PushL(self);
|
sl@0
|
31 |
self->ConstructL();
|
sl@0
|
32 |
CleanupStack::Pop();
|
sl@0
|
33 |
return self;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
inline TInt CDataLogger_CreateAndDestroy_UnitTest::RunError(TInt aError)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
39 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
40 |
delete iUTContext;
|
sl@0
|
41 |
iUTContext = NULL;
|
sl@0
|
42 |
delete iStateAccessor;
|
sl@0
|
43 |
iStateAccessor = NULL;
|
sl@0
|
44 |
/* delete any validators used */
|
sl@0
|
45 |
delete iCtorValidator;
|
sl@0
|
46 |
iCtorValidator = NULL;
|
sl@0
|
47 |
delete iDtorValidator;
|
sl@0
|
48 |
iDtorValidator = NULL;
|
sl@0
|
49 |
return error;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
inline CDataLogger_CreateAndDestroy_UnitTest::~CDataLogger_CreateAndDestroy_UnitTest()
|
sl@0
|
53 |
{
|
sl@0
|
54 |
// Simply delete our test class instance
|
sl@0
|
55 |
delete iUTContext;
|
sl@0
|
56 |
delete iStateAccessor;
|
sl@0
|
57 |
/* delete any validators used */
|
sl@0
|
58 |
delete iCtorValidator;
|
sl@0
|
59 |
delete iDtorValidator;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
inline CDataLogger_CreateAndDestroy_UnitTest::CDataLogger_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
63 |
MUnitTestObserver& aObserver)
|
sl@0
|
64 |
: CUnitTest(KDataLoggerCreateAndDestroyUnitTest, aDataLogger, aObserver)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
//Do nothing
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
// Now the Individual transitions need to be added.
|
sl@0
|
70 |
inline void CDataLogger_CreateAndDestroy_UnitTest::ConstructL()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
// Perform the base class initialization
|
sl@0
|
73 |
UnitTestConstructL();
|
sl@0
|
74 |
|
sl@0
|
75 |
// Create the Unit test state accessor
|
sl@0
|
76 |
iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
|
sl@0
|
77 |
// Construct the Unit test context.
|
sl@0
|
78 |
iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
|
sl@0
|
79 |
|
sl@0
|
80 |
// Add the Transitions in the order they are to run
|
sl@0
|
81 |
// C'tor first, D'tor last...
|
sl@0
|
82 |
iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
83 |
iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
84 |
|
sl@0
|
85 |
AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
86 |
AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
// ______________________________________________________________________________
|
sl@0
|
90 |
//
|
sl@0
|
91 |
_LIT(KDataLoggerDumpMemoryBlockUnitTest,"CDataLogger_DumpMemoryBlock_UnitTest");
|
sl@0
|
92 |
|
sl@0
|
93 |
CDataLogger_DumpMemoryBlock_UnitTest* CDataLogger_DumpMemoryBlock_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
94 |
MUnitTestObserver& aObserver)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
CDataLogger_DumpMemoryBlock_UnitTest* self =
|
sl@0
|
97 |
new(ELeave) CDataLogger_DumpMemoryBlock_UnitTest(aDataLogger,
|
sl@0
|
98 |
aObserver);
|
sl@0
|
99 |
CleanupStack::PushL(self);
|
sl@0
|
100 |
self->ConstructL();
|
sl@0
|
101 |
CleanupStack::Pop();
|
sl@0
|
102 |
return self;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
inline TInt CDataLogger_DumpMemoryBlock_UnitTest::RunError(TInt aError)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
108 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
109 |
delete iUTContext;
|
sl@0
|
110 |
iUTContext = NULL;
|
sl@0
|
111 |
delete iStateAccessor;
|
sl@0
|
112 |
iStateAccessor = NULL;
|
sl@0
|
113 |
/* delete any validators used */
|
sl@0
|
114 |
delete iCtorValidator;
|
sl@0
|
115 |
iCtorValidator = NULL;
|
sl@0
|
116 |
delete iDumpMemoryBlockValidator;
|
sl@0
|
117 |
iDumpMemoryBlockValidator = NULL;
|
sl@0
|
118 |
delete iDtorValidator;
|
sl@0
|
119 |
iDtorValidator = NULL;
|
sl@0
|
120 |
return error;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
inline CDataLogger_DumpMemoryBlock_UnitTest::~CDataLogger_DumpMemoryBlock_UnitTest()
|
sl@0
|
124 |
{
|
sl@0
|
125 |
// Simply delete our test class instance
|
sl@0
|
126 |
delete iUTContext;
|
sl@0
|
127 |
delete iStateAccessor;
|
sl@0
|
128 |
/* delete any validators used */
|
sl@0
|
129 |
delete iCtorValidator;
|
sl@0
|
130 |
delete iDumpMemoryBlockValidator;
|
sl@0
|
131 |
delete iDtorValidator;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
inline CDataLogger_DumpMemoryBlock_UnitTest::CDataLogger_DumpMemoryBlock_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
135 |
MUnitTestObserver& aObserver)
|
sl@0
|
136 |
: CUnitTest(KDataLoggerDumpMemoryBlockUnitTest, aDataLogger, aObserver)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
//Do nothing
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
// Now the Individual transitions need to be added.
|
sl@0
|
142 |
inline void CDataLogger_DumpMemoryBlock_UnitTest::ConstructL()
|
sl@0
|
143 |
{
|
sl@0
|
144 |
// Perform the base class initialization
|
sl@0
|
145 |
UnitTestConstructL();
|
sl@0
|
146 |
|
sl@0
|
147 |
// Create the Unit test state accessor
|
sl@0
|
148 |
iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
|
sl@0
|
149 |
// Construct the Unit test context.
|
sl@0
|
150 |
iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
|
sl@0
|
151 |
|
sl@0
|
152 |
// Set the address of the block to be logged as the address of the literal
|
sl@0
|
153 |
_LIT8(KDumpedText, "Text dumped by the DumpMemoryBlock method");
|
sl@0
|
154 |
iUTContext->iAddress = KDumpedText().Ptr();
|
sl@0
|
155 |
|
sl@0
|
156 |
// Set the number of bytes to be logged to as the length of the text to be dumped
|
sl@0
|
157 |
TInt byteLength = KDumpedText().Length();
|
sl@0
|
158 |
iUTContext->iLength = byteLength;
|
sl@0
|
159 |
|
sl@0
|
160 |
// Add the Transitions in the order they are to run
|
sl@0
|
161 |
// C'tor first, D'tor last...
|
sl@0
|
162 |
iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
163 |
iDumpMemoryBlockValidator = new(ELeave) TDataLogger_DumpMemoryBlock_TransitionValidator(*iUTContext);
|
sl@0
|
164 |
iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
165 |
|
sl@0
|
166 |
AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
167 |
AddTransitionL(new(ELeave)CDataLogger_DumpMemoryBlock_Transition(*iUTContext,*iDumpMemoryBlockValidator));
|
sl@0
|
168 |
AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
// ______________________________________________________________________________
|
sl@0
|
172 |
//
|
sl@0
|
173 |
_LIT(KDataLoggerLogInformationUnitTest,"CDataLogger_LogInformation_UnitTest");
|
sl@0
|
174 |
|
sl@0
|
175 |
CDataLogger_LogInformation_UnitTest* CDataLogger_LogInformation_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
176 |
MUnitTestObserver& aObserver)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
CDataLogger_LogInformation_UnitTest* self =
|
sl@0
|
179 |
new(ELeave) CDataLogger_LogInformation_UnitTest(aDataLogger,
|
sl@0
|
180 |
aObserver);
|
sl@0
|
181 |
CleanupStack::PushL(self);
|
sl@0
|
182 |
self->ConstructL();
|
sl@0
|
183 |
CleanupStack::Pop();
|
sl@0
|
184 |
return self;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
inline TInt CDataLogger_LogInformation_UnitTest::RunError(TInt aError)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
190 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
191 |
delete iUTContext;
|
sl@0
|
192 |
iUTContext = NULL;
|
sl@0
|
193 |
delete iStateAccessor;
|
sl@0
|
194 |
iStateAccessor = NULL;
|
sl@0
|
195 |
/* delete any validators used */
|
sl@0
|
196 |
delete iCtorValidator;
|
sl@0
|
197 |
iCtorValidator = NULL;
|
sl@0
|
198 |
delete iLogInformationValidator;
|
sl@0
|
199 |
iLogInformationValidator = NULL;
|
sl@0
|
200 |
delete iLogInformationNarrowValidator;
|
sl@0
|
201 |
iLogInformationNarrowValidator =NULL;
|
sl@0
|
202 |
delete iLogInformationWithParametersValidator;
|
sl@0
|
203 |
iLogInformationWithParametersValidator = NULL;
|
sl@0
|
204 |
delete iLogInformationWithParametersNarrowValidator;
|
sl@0
|
205 |
iLogInformationWithParametersNarrowValidator = NULL;
|
sl@0
|
206 |
delete iDtorValidator;
|
sl@0
|
207 |
iDtorValidator = NULL;
|
sl@0
|
208 |
|
sl@0
|
209 |
return error;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
inline CDataLogger_LogInformation_UnitTest::~CDataLogger_LogInformation_UnitTest()
|
sl@0
|
213 |
{
|
sl@0
|
214 |
// Simply delete our test class instance
|
sl@0
|
215 |
delete iUTContext;
|
sl@0
|
216 |
delete iStateAccessor;
|
sl@0
|
217 |
/* delete any validators used */
|
sl@0
|
218 |
delete iCtorValidator;
|
sl@0
|
219 |
delete iLogInformationValidator;
|
sl@0
|
220 |
delete iLogInformationNarrowValidator;
|
sl@0
|
221 |
delete iLogInformationWithParametersValidator;
|
sl@0
|
222 |
delete iLogInformationWithParametersNarrowValidator;
|
sl@0
|
223 |
delete iDtorValidator;
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
inline CDataLogger_LogInformation_UnitTest::CDataLogger_LogInformation_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
227 |
MUnitTestObserver& aObserver)
|
sl@0
|
228 |
: CUnitTest(KDataLoggerLogInformationUnitTest, aDataLogger, aObserver)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
//Do nothing
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
// Now the Individual transitions need to be added.
|
sl@0
|
234 |
inline void CDataLogger_LogInformation_UnitTest::ConstructL()
|
sl@0
|
235 |
{
|
sl@0
|
236 |
// Perform the base class initialization
|
sl@0
|
237 |
UnitTestConstructL();
|
sl@0
|
238 |
|
sl@0
|
239 |
// Create the Unit test state accessor
|
sl@0
|
240 |
iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
|
sl@0
|
241 |
// Construct the Unit test context.
|
sl@0
|
242 |
iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
|
sl@0
|
243 |
|
sl@0
|
244 |
// Wide descriptor to be used as passed in parameter in LogInformationWithParameters transition
|
sl@0
|
245 |
_LIT(KTextWide,"Parameter - wide descriptor version");
|
sl@0
|
246 |
HBufC* hptr1 = KTextWide().AllocL();
|
sl@0
|
247 |
iUTContext->iArg = hptr1;
|
sl@0
|
248 |
|
sl@0
|
249 |
// Narrow descriptor to be used as passed in parameter in LogInformationWithParametersNarrow transition
|
sl@0
|
250 |
_LIT8(KTextNarrow,"Parameter - narrow descriptor version");
|
sl@0
|
251 |
HBufC8* hptr2 = KTextNarrow().AllocL();;
|
sl@0
|
252 |
iUTContext->iArgNarrow = hptr2;
|
sl@0
|
253 |
|
sl@0
|
254 |
// Add the Transitions in the order they are to run
|
sl@0
|
255 |
// C'tor first, D'tor last...
|
sl@0
|
256 |
iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
257 |
iLogInformationValidator = new(ELeave) TDataLogger_LogInformation_TransitionValidator(*iUTContext);
|
sl@0
|
258 |
iLogInformationNarrowValidator = new(ELeave) TDataLogger_LogInformationNarrow_TransitionValidator(*iUTContext);
|
sl@0
|
259 |
iLogInformationWithParametersValidator = new(ELeave) TDataLogger_LogInformationWithParameters_TransitionValidator(*iUTContext);
|
sl@0
|
260 |
iLogInformationWithParametersNarrowValidator = new(ELeave) TDataLogger_LogInformationWithParametersNarrow_TransitionValidator(*iUTContext);
|
sl@0
|
261 |
iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
262 |
|
sl@0
|
263 |
AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
264 |
AddTransitionL(new(ELeave)CDataLogger_LogInformation_Transition(*iUTContext,*iLogInformationValidator));
|
sl@0
|
265 |
AddTransitionL(new(ELeave)CDataLogger_LogInformationNarrow_Transition(*iUTContext,*iLogInformationNarrowValidator));
|
sl@0
|
266 |
AddTransitionL(new(ELeave)CDataLogger_LogInformationWithParameters_Transition(*iUTContext,*iLogInformationWithParametersValidator));
|
sl@0
|
267 |
AddTransitionL(new(ELeave)CDataLogger_LogInformationWithParametersNarrow_Transition(*iUTContext,*iLogInformationWithParametersNarrowValidator));
|
sl@0
|
268 |
AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
// ______________________________________________________________________________
|
sl@0
|
272 |
//
|
sl@0
|
273 |
_LIT(KDataLoggerReportInformationUnitTest,"CDataLogger_ReportInformation_UnitTest");
|
sl@0
|
274 |
|
sl@0
|
275 |
CDataLogger_ReportInformation_UnitTest* CDataLogger_ReportInformation_UnitTest::NewL(CDataLogger& aDataLogger,
|
sl@0
|
276 |
MUnitTestObserver& aObserver)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
CDataLogger_ReportInformation_UnitTest* self =
|
sl@0
|
279 |
new(ELeave) CDataLogger_ReportInformation_UnitTest(aDataLogger,
|
sl@0
|
280 |
aObserver);
|
sl@0
|
281 |
CleanupStack::PushL(self);
|
sl@0
|
282 |
self->ConstructL();
|
sl@0
|
283 |
CleanupStack::Pop();
|
sl@0
|
284 |
return self;
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
inline TInt CDataLogger_ReportInformation_UnitTest::RunError(TInt aError)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
// The RunL left so chain to the base first and then cleanup
|
sl@0
|
290 |
TInt error = CUnitTest::RunError(aError); // Chain to base
|
sl@0
|
291 |
delete iUTContext;
|
sl@0
|
292 |
iUTContext = NULL;
|
sl@0
|
293 |
delete iStateAccessor;
|
sl@0
|
294 |
iStateAccessor = NULL;
|
sl@0
|
295 |
/* delete any validators used */
|
sl@0
|
296 |
delete iCtorValidator;
|
sl@0
|
297 |
iCtorValidator = NULL;
|
sl@0
|
298 |
delete iReportInformationValidator;
|
sl@0
|
299 |
iReportInformationValidator = NULL;
|
sl@0
|
300 |
delete iReportInformationWithParametersValidator;
|
sl@0
|
301 |
iReportInformationWithParametersValidator = NULL;
|
sl@0
|
302 |
delete iDtorValidator;
|
sl@0
|
303 |
iDtorValidator = NULL;
|
sl@0
|
304 |
|
sl@0
|
305 |
return error;
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
inline CDataLogger_ReportInformation_UnitTest::~CDataLogger_ReportInformation_UnitTest()
|
sl@0
|
309 |
{
|
sl@0
|
310 |
// Simply delete our test class instance
|
sl@0
|
311 |
delete iUTContext;
|
sl@0
|
312 |
delete iStateAccessor;
|
sl@0
|
313 |
/* delete any validators used */
|
sl@0
|
314 |
delete iCtorValidator;
|
sl@0
|
315 |
delete iReportInformationValidator;
|
sl@0
|
316 |
delete iReportInformationWithParametersValidator;
|
sl@0
|
317 |
delete iDtorValidator;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
inline CDataLogger_ReportInformation_UnitTest::CDataLogger_ReportInformation_UnitTest(CDataLogger& aDataLogger,
|
sl@0
|
321 |
MUnitTestObserver& aObserver)
|
sl@0
|
322 |
: CUnitTest(KDataLoggerReportInformationUnitTest, aDataLogger, aObserver)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
//Do nothing
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
// Now the Individual transitions need to be added.
|
sl@0
|
328 |
inline void CDataLogger_ReportInformation_UnitTest::ConstructL()
|
sl@0
|
329 |
{
|
sl@0
|
330 |
// Perform the base class initialization
|
sl@0
|
331 |
UnitTestConstructL();
|
sl@0
|
332 |
|
sl@0
|
333 |
// Create the Unit test state accessor
|
sl@0
|
334 |
iStateAccessor = new(ELeave) TDataLogger_StateAccessor;
|
sl@0
|
335 |
// Construct the Unit test context.
|
sl@0
|
336 |
iUTContext = new(ELeave) CDataLogger_UnitTestContext(iDataLogger, *iStateAccessor, *this);
|
sl@0
|
337 |
|
sl@0
|
338 |
// Text to be inserted into the report by the ReportInformation method
|
sl@0
|
339 |
_LIT(KReportComment, "This is a report comment");
|
sl@0
|
340 |
iUTContext->iReportComment = &KReportComment();
|
sl@0
|
341 |
|
sl@0
|
342 |
// The text to be inserted into the report by the ReportInformationWithParameters method
|
sl@0
|
343 |
_LIT(KFormatReport, "This report text will be followed by a parameter: %S");
|
sl@0
|
344 |
iUTContext->iFormatReport = &KFormatReport();
|
sl@0
|
345 |
|
sl@0
|
346 |
// The parameter to be appended to the end of the text above by the ReportInformationWithParameters method
|
sl@0
|
347 |
_LIT(KReportArg, "This is the report parameter");
|
sl@0
|
348 |
iUTContext->iReportArg = &KReportArg();
|
sl@0
|
349 |
|
sl@0
|
350 |
// Add the Transitions in the order they are to run
|
sl@0
|
351 |
// C'tor first, D'tor last...
|
sl@0
|
352 |
iCtorValidator = new(ELeave) TDataLogger_Ctor_TransitionValidator(*iUTContext);
|
sl@0
|
353 |
iReportInformationValidator = new(ELeave) TDataLogger_ReportInformation_TransitionValidator(*iUTContext);
|
sl@0
|
354 |
iReportInformationWithParametersValidator = new(ELeave) TDataLogger_ReportInformationWithParameters_TransitionValidator(*iUTContext);
|
sl@0
|
355 |
iDtorValidator = new(ELeave) TDataLogger_Dtor_TransitionValidator(*iUTContext);
|
sl@0
|
356 |
|
sl@0
|
357 |
AddTransitionL(new(ELeave)CDataLogger_NewL_Transition(*iUTContext,*iCtorValidator));
|
sl@0
|
358 |
AddTransitionL(new(ELeave)CDataLogger_ReportInformation_Transition(*iUTContext,*iReportInformationValidator));
|
sl@0
|
359 |
AddTransitionL(new(ELeave)CDataLogger_ReportInformationWithParameters_Transition(*iUTContext,*iReportInformationWithParametersValidator));
|
sl@0
|
360 |
AddTransitionL(new(ELeave)CDataLogger_Dtor_Transition(*iUTContext,*iDtorValidator));
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
|