os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitionValidation.h
Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definitions of the transition classes upon the CDataLogger class methods.
18 #ifndef __DATALOGGERTRANSITIONVALIDATION_H__
19 #define __DATALOGGERTRANSITIONVALIDATION_H__
21 #include "DataLoggerTransitions.h"
23 // ______________________________________________________________________________
28 Comments : Provide all the CtorUnit Test's specific
29 validatation for the state of a transition before and after its execution.
30 on the CDataLogger test class for a transition.
32 class TDataLogger_Ctor_TransitionValidator : public TTransitionValidator
36 @fn TDataLogger_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
40 @param aUTContext The context within which this transition is executing
42 inline TDataLogger_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
45 @fn ValidatePreConditions()
46 Intended Usage : Implemented by the developer to check the
47 end state of the transition behaviour.
48 Error Condition : Invalid pre-conditions
50 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
51 @pre TDataLogger_Ctor_TransitionValidator is fully constructed.
52 @post No change to the iUTContext class.
54 virtual inline TBool ValidatePreConditions();
57 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
58 Intended Usage : Implemented by the developer to check the
59 end state of the transition behaviour.
60 When overriding, if the transition calls an asynchronous function
61 ValidatePostConditions will be called twice. Firstly, after the
62 asynchronous function has been called and, secondly, after the
63 asynchronous request has completed. The parameter aAsyncState can
64 be used to distinguish between these two cases.
65 Error Condition : Invalid post-conditions.
67 @param aAsyncState EAsyncCalled if the async function has been just been called,
68 EAsyncCompleted if the function has completed.
69 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
70 @pre TDataLogger_Ctor_TransitionValidator is fully constructed.
71 @post No change to the iUTContext class.
73 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
74 }; // TDataLogger_Ctor_TransitionValidator
76 // ______________________________________________________________________________
81 Comments : Provide all the DtorUnit Test's specific
82 validatation for the state of a transition before and after its execution.
83 on the CDataLogger test class for a transition.
85 class TDataLogger_Dtor_TransitionValidator : public TTransitionValidator
89 @fn TDataLogger_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
93 @param aUTContext The context within which this transition is executing
95 inline TDataLogger_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
98 @fn ValidatePreConditions()
99 Intended Usage : Implemented by the developer to check the
100 end state of the transition behaviour.
101 Error Condition : Invalid pre-conditions
103 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
104 @pre TDataLogger_Dtor_TransitionValidator is fully constructed.
105 @post No change to the iUTContext class.
107 virtual inline TBool ValidatePreConditions();
110 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
111 Intended Usage : Implemented by the developer to check the
112 end state of the transition behaviour.
113 When overriding, if the transition calls an asynchronous function
114 ValidatePostConditions will be called twice. Firstly, after the
115 asynchronous function has been called and, secondly, after the
116 asynchronous request has completed. The parameter aAsyncState can
117 be used to distinguish between these two cases.
118 Error Condition : Invalid post-conditions.
120 @param aAsyncState EAsyncCalled if the async function has been just been called,
121 EAsyncCompleted if the function has completed.
122 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
123 @pre TDataLogger_Dtor_TransitionValidator is fully constructed.
124 @post No change to the iUTContext class.
126 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
127 }; // TDataLogger_Dtor_TransitionValidator
129 // ______________________________________________________________________________
134 Comments : Provide all the DumpMemoryBlockUnit Test's specific
135 validatation for the state of a transition before and after its execution.
136 on the CDataLogger test class for a transition.
138 class TDataLogger_DumpMemoryBlock_TransitionValidator : public TTransitionValidator
142 @fn TDataLogger_DumpMemoryBlock_TransitionValidator(CUnitTestContext& aUTContext)
146 @param aUTContext The context within which this transition is executing
148 inline TDataLogger_DumpMemoryBlock_TransitionValidator(CUnitTestContext& aUTContext);
151 @fn ValidatePreConditions()
152 Intended Usage : Implemented by the developer to check the
153 end state of the transition behaviour.
154 Error Condition : Invalid pre-conditions
156 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
157 @pre TDataLogger_DumpMemoryBlock_TransitionValidator is fully constructed.
158 @post No change to the iUTContext class.
160 virtual inline TBool ValidatePreConditions();
163 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
164 Intended Usage : Implemented by the developer to check the
165 end state of the transition behaviour.
166 When overriding, if the transition calls an asynchronous function
167 ValidatePostConditions will be called twice. Firstly, after the
168 asynchronous function has been called and, secondly, after the
169 asynchronous request has completed. The parameter aAsyncState can
170 be used to distinguish between these two cases.
171 Error Condition : Invalid post-conditions.
173 @param aAsyncState EAsyncCalled if the async function has been just been called,
174 EAsyncCompleted if the function has completed.
175 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
176 @pre TDataLogger_DumpMemoryBlock_TransitionValidator is fully constructed.
177 @post No change to the iUTContext class.
179 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
180 }; // TDataLogger_DumpMemoryBlock_TransitionValidator
182 // ______________________________________________________________________________
187 Comments : Provide all the LogInformationUnit Test's specific
188 validatation for the state of a transition before and after its execution.
189 on the CDataLogger test class for a transition.
191 class TDataLogger_LogInformation_TransitionValidator : public TTransitionValidator
195 @fn TDataLogger_LogInformation_TransitionValidator(CUnitTestContext& aUTContext)
199 @param aUTContext The context within which this transition is executing
201 inline TDataLogger_LogInformation_TransitionValidator(CUnitTestContext& aUTContext);
204 @fn ValidatePreConditions()
205 Intended Usage : Implemented by the developer to check the
206 end state of the transition behaviour.
207 Error Condition : Invalid pre-conditions
209 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
210 @pre TDataLogger_LogInformation_TransitionValidator is fully constructed.
211 @post No change to the iUTContext class.
213 virtual inline TBool ValidatePreConditions();
216 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
217 Intended Usage : Implemented by the developer to check the
218 end state of the transition behaviour.
219 When overriding, if the transition calls an asynchronous function
220 ValidatePostConditions will be called twice. Firstly, after the
221 asynchronous function has been called and, secondly, after the
222 asynchronous request has completed. The parameter aAsyncState can
223 be used to distinguish between these two cases.
224 Error Condition : Invalid post-conditions.
226 @param aAsyncState EAsyncCalled if the async function has been just been called,
227 EAsyncCompleted if the function has completed.
228 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
229 @pre TDataLogger_LogInformation_TransitionValidator is fully constructed.
230 @post No change to the iUTContext class.
232 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
233 }; // TDataLogger_LogInformation_TransitionValidator
235 // ______________________________________________________________________________
240 Comments : Provide all the LogInformationNarrowUnit Test's specific
241 validatation for the state of a transition before and after its execution.
242 on the CDataLogger test class for a transition.
244 class TDataLogger_LogInformationNarrow_TransitionValidator : public TTransitionValidator
248 @fn TDataLogger_LogInformationNarrow_TransitionValidator(CUnitTestContext& aUTContext)
252 @param aUTContext The context within which this transition is executing
254 inline TDataLogger_LogInformationNarrow_TransitionValidator(CUnitTestContext& aUTContext);
257 @fn ValidatePreConditions()
258 Intended Usage : Implemented by the developer to check the
259 end state of the transition behaviour.
260 Error Condition : Invalid pre-conditions
262 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
263 @pre TDataLogger_LogInformationNarrow_TransitionValidator is fully constructed.
264 @post No change to the iUTContext class.
266 virtual inline TBool ValidatePreConditions();
269 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
270 Intended Usage : Implemented by the developer to check the
271 end state of the transition behaviour.
272 When overriding, if the transition calls an asynchronous function
273 ValidatePostConditions will be called twice. Firstly, after the
274 asynchronous function has been called and, secondly, after the
275 asynchronous request has completed. The parameter aAsyncState can
276 be used to distinguish between these two cases.
277 Error Condition : Invalid post-conditions.
279 @param aAsyncState EAsyncCalled if the async function has been just been called,
280 EAsyncCompleted if the function has completed.
281 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
282 @pre TDataLogger_LogInformationNarrow_TransitionValidator is fully constructed.
283 @post No change to the iUTContext class.
285 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
286 }; // TDataLogger_LogInformationNarrow_TransitionValidator
288 // ______________________________________________________________________________
293 Comments : Provide all the LogInformationWithParametersUnit Test's specific
294 validatation for the state of a transition before and after its execution.
295 on the CDataLogger test class for a transition.
297 class TDataLogger_LogInformationWithParameters_TransitionValidator : public TTransitionValidator
301 @fn TDataLogger_LogInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext)
305 @param aUTContext The context within which this transition is executing
307 inline TDataLogger_LogInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext);
310 @fn ValidatePreConditions()
311 Intended Usage : Implemented by the developer to check the
312 end state of the transition behaviour.
313 Error Condition : Invalid pre-conditions
315 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
316 @pre TDataLogger_LogInformationWithParameters_TransitionValidator is fully constructed.
317 @post No change to the iUTContext class.
319 virtual inline TBool ValidatePreConditions();
322 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
323 Intended Usage : Implemented by the developer to check the
324 end state of the transition behaviour.
325 When overriding, if the transition calls an asynchronous function
326 ValidatePostConditions will be called twice. Firstly, after the
327 asynchronous function has been called and, secondly, after the
328 asynchronous request has completed. The parameter aAsyncState can
329 be used to distinguish between these two cases.
330 Error Condition : Invalid post-conditions.
332 @param aAsyncState EAsyncCalled if the async function has been just been called,
333 EAsyncCompleted if the function has completed.
334 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
335 @pre TDataLogger_LogInformationWithParameters_TransitionValidator is fully constructed.
336 @post No change to the iUTContext class.
338 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
339 }; // TDataLogger_LogInformationWithParameters_TransitionValidator
341 // ______________________________________________________________________________
346 Comments : Provide all the LogInformationWithParametersNarrowUnit Test's specific
347 validatation for the state of a transition before and after its execution.
348 on the CDataLogger test class for a transition.
350 class TDataLogger_LogInformationWithParametersNarrow_TransitionValidator : public TTransitionValidator
354 @fn TDataLogger_LogInformationWithParametersNarrow_TransitionValidator(CUnitTestContext& aUTContext)
358 @param aUTContext The context within which this transition is executing
360 inline TDataLogger_LogInformationWithParametersNarrow_TransitionValidator(CUnitTestContext& aUTContext);
363 @fn ValidatePreConditions()
364 Intended Usage : Implemented by the developer to check the
365 end state of the transition behaviour.
366 Error Condition : Invalid pre-conditions
368 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
369 @pre TDataLogger_LogInformationWithParametersNarrow_TransitionValidator is fully constructed.
370 @post No change to the iUTContext class.
372 virtual inline TBool ValidatePreConditions();
375 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
376 Intended Usage : Implemented by the developer to check the
377 end state of the transition behaviour.
378 When overriding, if the transition calls an asynchronous function
379 ValidatePostConditions will be called twice. Firstly, after the
380 asynchronous function has been called and, secondly, after the
381 asynchronous request has completed. The parameter aAsyncState can
382 be used to distinguish between these two cases.
383 Error Condition : Invalid post-conditions.
385 @param aAsyncState EAsyncCalled if the async function has been just been called,
386 EAsyncCompleted if the function has completed.
387 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
388 @pre TDataLogger_LogInformationWithParametersNarrow_TransitionValidator is fully constructed.
389 @post No change to the iUTContext class.
391 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
392 }; // TDataLogger_LogInformationWithParametersNarrow_TransitionValidator
394 // ______________________________________________________________________________
399 Comments : Provide all the ReportInformationUnit Test's specific
400 validatation for the state of a transition before and after its execution.
401 on the CDataLogger test class for a transition.
403 class TDataLogger_ReportInformation_TransitionValidator : public TTransitionValidator
407 @fn TDataLogger_ReportInformation_TransitionValidator(CUnitTestContext& aUTContext)
411 @param aUTContext The context within which this transition is executing
413 inline TDataLogger_ReportInformation_TransitionValidator(CUnitTestContext& aUTContext);
416 @fn ValidatePreConditions()
417 Intended Usage : Implemented by the developer to check the
418 end state of the transition behaviour.
419 Error Condition : Invalid pre-conditions
421 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
422 @pre TDataLogger_ReportInformation_TransitionValidator is fully constructed.
423 @post No change to the iUTContext class.
425 virtual inline TBool ValidatePreConditions();
428 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
429 Intended Usage : Implemented by the developer to check the
430 end state of the transition behaviour.
431 When overriding, if the transition calls an asynchronous function
432 ValidatePostConditions will be called twice. Firstly, after the
433 asynchronous function has been called and, secondly, after the
434 asynchronous request has completed. The parameter aAsyncState can
435 be used to distinguish between these two cases.
436 Error Condition : Invalid post-conditions.
438 @param aAsyncState EAsyncCalled if the async function has been just been called,
439 EAsyncCompleted if the function has completed.
440 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
441 @pre TDataLogger_ReportInformation_TransitionValidator is fully constructed.
442 @post No change to the iUTContext class.
444 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
445 }; // TDataLogger_ReportInformation_TransitionValidator
447 // ______________________________________________________________________________
452 Comments : Provide all the ReportInformationWithParametersUnit Test's specific
453 validatation for the state of a transition before and after its execution.
454 on the CDataLogger test class for a transition.
456 class TDataLogger_ReportInformationWithParameters_TransitionValidator : public TTransitionValidator
460 @fn TDataLogger_ReportInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext)
464 @param aUTContext The context within which this transition is executing
466 inline TDataLogger_ReportInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext);
469 @fn ValidatePreConditions()
470 Intended Usage : Implemented by the developer to check the
471 end state of the transition behaviour.
472 Error Condition : Invalid pre-conditions
474 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
475 @pre TDataLogger_ReportInformationWithParameters_TransitionValidator is fully constructed.
476 @post No change to the iUTContext class.
478 virtual inline TBool ValidatePreConditions();
481 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
482 Intended Usage : Implemented by the developer to check the
483 end state of the transition behaviour.
484 When overriding, if the transition calls an asynchronous function
485 ValidatePostConditions will be called twice. Firstly, after the
486 asynchronous function has been called and, secondly, after the
487 asynchronous request has completed. The parameter aAsyncState can
488 be used to distinguish between these two cases.
489 Error Condition : Invalid post-conditions.
491 @param aAsyncState EAsyncCalled if the async function has been just been called,
492 EAsyncCompleted if the function has completed.
493 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
494 @pre TDataLogger_ReportInformationWithParameters_TransitionValidator is fully constructed.
495 @post No change to the iUTContext class.
497 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
498 }; // TDataLogger_ReportInformationWithParameters_TransitionValidator
500 #include "DataLoggerTransitionValidation.inl"
502 #endif // __DATALOGGERTRANSITIONVALIDATION_H__