os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitionValidation.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 validation classes for the CDiscoverer transitions.
18 #ifndef __DISCOVERERTRANSITIONVALIDATION_H__
19 #define __DISCOVERERTRANSITIONVALIDATION_H__
21 #include "DiscovererTransitions.h"
23 // ______________________________________________________________________________
28 Comments : Provide all the CreateAndDestroy Unit Test's specific
29 validatation for the state of a transition before and after its execution.
30 on the CDiscoverer test class for a transition.
33 class TDiscoverer_Ctor_TransitionValidator : public TTransitionValidator
37 @fn TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
38 Intended Usage : Standard constructor.
41 @param aUTContext The context within which this transition is executing
43 inline TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
46 @fn ValidatePreConditions()
47 Intended Usage : Implemented by the developer to check the
48 end state of the transition behaviour.
49 Error Condition : Invalid pre-conditions
51 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
52 @pre TDiscoverer_Default_TransitionValidator is fully constructed.
53 @post No change to the iUTContext class.
55 virtual inline TBool ValidatePreConditions();
58 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
59 Intended Usage : Implemented by the developer to check the
60 end state of the transition behaviour.
61 When overriding, if the transition calls an asynchronous function
62 ValidatePostConditions will be called twice. Firstly, after the
63 asynchronous function has been called and, secondly, after the
64 asynchronous request has completed. The parameter aAsyncState can
65 be used to distinguish between these two cases.
66 Error Condition : Invalid post-conditions.
68 @param aAsyncState EAsyncCalled if the async function has been just been called,
69 EAsyncCompleted if the function has completed.
70 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
71 @pre TDiscoverer_Default_TransitionValidator is fully constructed.
72 @post No change to the iUTContext class.
74 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
75 }; // TDiscoverer_Ctor_TransitionValidator
78 // ______________________________________________________________________________
83 Comments : Provide all the CreateAndDestroy Unit Test's specific
84 validatation for the state of a transition before and after its execution.
85 on the CDiscoverer test class for a transition.
88 class TDiscoverer_Dtor_TransitionValidator : public TTransitionValidator
92 @fn TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
96 @param aUTContext The context within which this transition is executing
98 inline TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
101 @fn ValidatePreConditions()
102 Intended Usage : Implemented by the developer to check the
103 end state of the transition behaviour.
104 Error Condition : Invalid pre-conditions
106 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
107 @pre TDiscoverer_Default_TransitionValidator is fully constructed.
108 @post No change to the iUTContext class.
110 virtual inline TBool ValidatePreConditions();
113 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
114 Intended Usage : Implemented by the developer to check the
115 end state of the transition behaviour.
116 When overriding, if the transition calls an asynchronous function
117 ValidatePostConditions will be called twice. Firstly, after the
118 asynchronous function has been called and, secondly, after the
119 asynchronous request has completed. The parameter aAsyncState can
120 be used to distinguish between these two cases.
121 Error Condition : Invalid post-conditions.
123 @param aAsyncState EAsyncCalled if the async function has been just been called,
124 EAsyncCompleted if the function has completed.
125 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
126 @pre TDiscoverer_Default_TransitionValidator is fully constructed.
127 @post No change to the iUTContext class.
129 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
130 }; // TDiscoverer_Dtor_TransitionValidator
132 // ______________________________________________________________________________
136 Comments : Provide all the MountDriveLUnit Test's specific
137 validatation for the state of a transition before and after its execution.
138 on the CDiscoverer test class for a transition.
141 class TDiscoverer_MountDriveL_TransitionValidator : public TTransitionValidator
145 @fn TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext)
149 @param aUTContext The context within which this transition is executing
151 inline TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext);
154 @fn ValidatePreConditions()
155 Intended Usage : Implemented by the developer to check the
156 end state of the transition behaviour.
157 Error Condition : Invalid pre-conditions
159 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
160 @pre TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
161 @post No change to the iUTContext class.
163 virtual inline TBool ValidatePreConditions();
166 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
167 Intended Usage : Implemented by the developer to check the
168 end state of the transition behaviour.
169 When overriding, if the transition calls an asynchronous function
170 ValidatePostConditions will be called twice. Firstly, after the
171 asynchronous function has been called and, secondly, after the
172 asynchronous request has completed. The parameter aAsyncState can
173 be used to distinguish between these two cases.
174 Error Condition : Invalid post-conditions.
176 @param aAsyncState EAsyncCalled if the async function has been just been called,
177 EAsyncCompleted if the function has completed.
178 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
179 @pre TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
180 @post No change to the iUTContext class.
182 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
183 }; // TDiscoverer_MountDriveL_TransitionValidator
185 // ______________________________________________________________________________
190 Comments : Provide all the UnmountDriveUnit Test's specific
191 validatation for the state of a transition before and after its execution.
192 on the CDiscoverer test class for a transition.
194 class TDiscoverer_UnmountDrive_TransitionValidator : public TTransitionValidator
198 @fn TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext)
202 @param aUTContext The context within which this transition is executing
204 inline TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext);
207 @fn ValidatePreConditions()
208 Intended Usage : Implemented by the developer to check the
209 end state of the transition behaviour.
210 Error Condition : Invalid pre-conditions
212 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
213 @pre TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
214 @post No change to the iUTContext class.
216 virtual inline TBool ValidatePreConditions();
219 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
220 Intended Usage : Implemented by the developer to check the
221 end state of the transition behaviour.
222 When overriding, if the transition calls an asynchronous function
223 ValidatePostConditions will be called twice. Firstly, after the
224 asynchronous function has been called and, secondly, after the
225 asynchronous request has completed. The parameter aAsyncState can
226 be used to distinguish between these two cases.
227 Error Condition : Invalid post-conditions.
229 @param aAsyncState EAsyncCalled if the async function has been just been called,
230 EAsyncCompleted if the function has completed.
231 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
232 @pre TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
233 @post No change to the iUTContext class.
235 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
236 }; // TDiscoverer_UnmountDrive_TransitionValidator
238 // ______________________________________________________________________________
243 Comments : Provide all the IsValidEntryUnit Test's specific
244 validatation for the state of a transition before and after its execution.
245 on the CDiscoverer test class for a transition.
247 class TDiscoverer_IsValidEntry_TransitionValidator : public TTransitionValidator
251 @fn TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext)
255 @param aUTContext The context within which this transition is executing
257 inline TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext);
260 @fn ValidatePreConditions()
261 Intended Usage : Implemented by the developer to check the
262 end state of the transition behaviour.
263 Error Condition : Invalid pre-conditions
265 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
266 @pre TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
267 @post No change to the iUTContext class.
269 virtual inline TBool ValidatePreConditions();
272 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
273 Intended Usage : Implemented by the developer to check the
274 end state of the transition behaviour.
275 When overriding, if the transition calls an asynchronous function
276 ValidatePostConditions will be called twice. Firstly, after the
277 asynchronous function has been called and, secondly, after the
278 asynchronous request has completed. The parameter aAsyncState can
279 be used to distinguish between these two cases.
280 Error Condition : Invalid post-conditions.
282 @param aAsyncState EAsyncCalled if the async function has been just been called,
283 EAsyncCompleted if the function has completed.
284 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
285 @pre TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
286 @post No change to the iUTContext class.
288 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
289 }; // TDiscoverer_IsValidEntry_TransitionValidator
291 // ______________________________________________________________________________
296 Comments : Provide all the ProcessEntryLUnit Test's specific
297 validatation for the state of a transition before and after its execution.
298 on the CDiscoverer test class for a transition.
300 class TDiscoverer_ProcessEntryL_TransitionValidator : public TTransitionValidator
304 @fn TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext)
308 @param aUTContext The context within which this transition is executing
310 inline TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext);
313 @fn ValidatePreConditions()
314 Intended Usage : Implemented by the developer to check the
315 end state of the transition behaviour.
316 Error Condition : Invalid pre-conditions
318 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
319 @pre TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
320 @post No change to the iUTContext class.
322 virtual inline TBool ValidatePreConditions();
325 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
326 Intended Usage : Implemented by the developer to check the
327 end state of the transition behaviour.
328 When overriding, if the transition calls an asynchronous function
329 ValidatePostConditions will be called twice. Firstly, after the
330 asynchronous function has been called and, secondly, after the
331 asynchronous request has completed. The parameter aAsyncState can
332 be used to distinguish between these two cases.
333 Error Condition : Invalid post-conditions.
335 @param aAsyncState EAsyncCalled if the async function has been just been called,
336 EAsyncCompleted if the function has completed.
337 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
338 @pre TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
339 @post No change to the iUTContext class.
341 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
342 }; // TDiscoverer_ProcessEntryL_TransitionValidator
344 // ______________________________________________________________________________
349 Comments : Provide all the CompleteNotificationProcessingUnit Test's specific
350 validatation for the state of a transition before and after its execution.
351 on the CDiscoverer test class for a transition.
353 class TDiscoverer_CompleteNotificationProcessing_TransitionValidator : public TTransitionValidator
357 @fn TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext)
361 @param aUTContext The context within which this transition is executing
363 inline TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext);
366 @fn ValidatePreConditions()
367 Intended Usage : Implemented by the developer to check the
368 end state of the transition behaviour.
369 Error Condition : Invalid pre-conditions
371 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
372 @pre TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
373 @post No change to the iUTContext class.
375 virtual inline TBool ValidatePreConditions();
378 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
379 Intended Usage : Implemented by the developer to check the
380 end state of the transition behaviour.
381 When overriding, if the transition calls an asynchronous function
382 ValidatePostConditions will be called twice. Firstly, after the
383 asynchronous function has been called and, secondly, after the
384 asynchronous request has completed. The parameter aAsyncState can
385 be used to distinguish between these two cases.
386 Error Condition : Invalid post-conditions.
388 @param aAsyncState EAsyncCalled if the async function has been just been called,
389 EAsyncCompleted if the function has completed.
390 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
391 @pre TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
392 @post No change to the iUTContext class.
394 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
395 }; // TDiscoverer_CompleteNotificationProcessing_TransitionValidator
397 // ______________________________________________________________________________
402 Comments : Provide all the NotificationUnit Test's specific
403 validatation for the state of a transition before and after its execution.
404 on the CDiscoverer test class for a transition.
406 class TDiscoverer_Notification_TransitionValidator : public TTransitionValidator
410 @fn TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext)
414 @param aUTContext The context within which this transition is executing
416 inline TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext);
419 @fn ValidatePreConditions()
420 Intended Usage : Implemented by the developer to check the
421 end state of the transition behaviour.
422 Error Condition : Invalid pre-conditions
424 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
425 @pre TDiscoverer_Notification_TransitionValidator is fully constructed.
426 @post No change to the iUTContext class.
428 virtual inline TBool ValidatePreConditions();
431 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
432 Intended Usage : Implemented by the developer to check the
433 end state of the transition behaviour.
434 When overriding, if the transition calls an asynchronous function
435 ValidatePostConditions will be called twice. Firstly, after the
436 asynchronous function has been called and, secondly, after the
437 asynchronous request has completed. The parameter aAsyncState can
438 be used to distinguish between these two cases.
439 Error Condition : Invalid post-conditions.
441 @param aAsyncState EAsyncCalled if the async function has been just been called,
442 EAsyncCompleted if the function has completed.
443 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
444 @pre TDiscoverer_Notification_TransitionValidator is fully constructed.
445 @post No change to the iUTContext class.
447 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
448 }; // TDiscoverer_Notification_TransitionValidator
449 // ______________________________________________________________________________
454 Comments : Provide all the SuspendUnit Test's specific
455 validatation for the state of a transition before and after its execution.
456 on the CDiscoverer test class for a transition.
458 class TDiscoverer_Suspend_TransitionValidator : public TTransitionValidator
462 @fn TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext)
466 @param aUTContext The context within which this transition is executing
468 inline TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext);
471 @fn ValidatePreConditions()
472 Intended Usage : Implemented by the developer to check the
473 end state of the transition behaviour.
474 Error Condition : Invalid pre-conditions
476 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
477 @pre TDiscoverer_Suspend_TransitionValidator is fully constructed.
478 @post No change to the iUTContext class.
480 virtual inline TBool ValidatePreConditions();
483 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
484 Intended Usage : Implemented by the developer to check the
485 end state of the transition behaviour.
486 When overriding, if the transition calls an asynchronous function
487 ValidatePostConditions will be called twice. Firstly, after the
488 asynchronous function has been called and, secondly, after the
489 asynchronous request has completed. The parameter aAsyncState can
490 be used to distinguish between these two cases.
491 Error Condition : Invalid post-conditions.
493 @param aAsyncState EAsyncCalled if the async function has been just been called,
494 EAsyncCompleted if the function has completed.
495 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
496 @pre TDiscoverer_Suspend_TransitionValidator is fully constructed.
497 @post No change to the iUTContext class.
499 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
500 }; // TDiscoverer_Suspend_TransitionValidator
503 // ______________________________________________________________________________
508 Comments : Provide all the ResumeUnit Test's specific
509 validatation for the state of a transition before and after its execution.
510 on the CDiscoverer test class for a transition.
512 class TDiscoverer_Resume_TransitionValidator : public TTransitionValidator
516 @fn TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext)
520 @param aUTContext The context within which this transition is executing
522 inline TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext);
525 @fn ValidatePreConditions()
526 Intended Usage : Implemented by the developer to check the
527 end state of the transition behaviour.
528 Error Condition : Invalid pre-conditions
530 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
531 @pre TDiscoverer_Resume_TransitionValidator is fully constructed.
532 @post No change to the iUTContext class.
534 virtual inline TBool ValidatePreConditions();
537 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
538 Intended Usage : Implemented by the developer to check the
539 end state of the transition behaviour.
540 When overriding, if the transition calls an asynchronous function
541 ValidatePostConditions will be called twice. Firstly, after the
542 asynchronous function has been called and, secondly, after the
543 asynchronous request has completed. The parameter aAsyncState can
544 be used to distinguish between these two cases.
545 Error Condition : Invalid post-conditions.
547 @param aAsyncState EAsyncCalled if the async function has been just been called,
548 EAsyncCompleted if the function has completed.
549 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
550 @pre TDiscoverer_Resume_TransitionValidator is fully constructed.
551 @post No change to the iUTContext class.
553 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
554 }; // TDiscoverer_Resume_TransitionValidator
556 // ______________________________________________________________________________
561 Comments : Provide all the ScanDirectoryUnit Test's specific
562 validatation for the state of a transition before and after its execution.
563 on the CDiscoverer test class for a transition.
565 class TDiscoverer_ScanDirectory_TransitionValidator : public TTransitionValidator
569 @fn TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext)
573 @param aUTContext The context within which this transition is executing
575 inline TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext);
578 @fn ValidatePreConditions()
579 Intended Usage : Implemented by the developer to check the
580 end state of the transition behaviour.
581 Error Condition : Invalid pre-conditions
583 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
584 @pre TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
585 @post No change to the iUTContext class.
587 virtual inline TBool ValidatePreConditions();
590 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
591 Intended Usage : Implemented by the developer to check the
592 end state of the transition behaviour.
593 When overriding, if the transition calls an asynchronous function
594 ValidatePostConditions will be called twice. Firstly, after the
595 asynchronous function has been called and, secondly, after the
596 asynchronous request has completed. The parameter aAsyncState can
597 be used to distinguish between these two cases.
598 Error Condition : Invalid post-conditions.
600 @param aAsyncState EAsyncCalled if the async function has been just been called,
601 EAsyncCompleted if the function has completed.
602 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
603 @pre TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
604 @post No change to the iUTContext class.
606 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
607 }; // TDiscoverer_ScanDirectory_TransitionValidator
609 // ______________________________________________________________________________
614 Comments : Provide all the ScanDirectoryCancelUnit Test's specific
615 validatation for the state of a transition before and after its execution.
616 on the CDiscoverer test class for a transition.
618 class TDiscoverer_ScanDirectoryCancel_TransitionValidator : public TTransitionValidator
622 @fn TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext)
626 @param aUTContext The context within which this transition is executing
628 inline TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext);
631 @fn ValidatePreConditions()
632 Intended Usage : Implemented by the developer to check the
633 end state of the transition behaviour.
634 Error Condition : Invalid pre-conditions
636 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
637 @pre TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
638 @post No change to the iUTContext class.
640 virtual inline TBool ValidatePreConditions();
643 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
644 Intended Usage : Implemented by the developer to check the
645 end state of the transition behaviour.
646 When overriding, if the transition calls an asynchronous function
647 ValidatePostConditions will be called twice. Firstly, after the
648 asynchronous function has been called and, secondly, after the
649 asynchronous request has completed. The parameter aAsyncState can
650 be used to distinguish between these two cases.
651 Error Condition : Invalid post-conditions.
653 @param aAsyncState EAsyncCalled if the async function has been just been called,
654 EAsyncCompleted if the function has completed.
655 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
656 @pre TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
657 @post No change to the iUTContext class.
659 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
660 }; // TDiscoverer_ScanDirectoryCancel_TransitionValidator
662 // ______________________________________________________________________________
667 Comments : Provide all the ScanDirectoryIncrementUnit Test's specific
668 validatation for the state of a transition before and after its execution.
669 on the CDiscoverer test class for a transition.
671 class TDiscoverer_ScanDirectoryIncrement_TransitionValidator : public TTransitionValidator
675 @fn TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext)
679 @param aUTContext The context within which this transition is executing
681 inline TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext);
684 @fn ValidatePreConditions()
685 Intended Usage : Implemented by the developer to check the
686 end state of the transition behaviour.
687 Error Condition : Invalid pre-conditions
689 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
690 @pre TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
691 @post No change to the iUTContext class.
693 virtual inline TBool ValidatePreConditions();
696 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
697 Intended Usage : Implemented by the developer to check the
698 end state of the transition behaviour.
699 When overriding, if the transition calls an asynchronous function
700 ValidatePostConditions will be called twice. Firstly, after the
701 asynchronous function has been called and, secondly, after the
702 asynchronous request has completed. The parameter aAsyncState can
703 be used to distinguish between these two cases.
704 Error Condition : Invalid post-conditions.
706 @param aAsyncState EAsyncCalled if the async function has been just been called,
707 EAsyncCompleted if the function has completed.
708 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
709 @pre TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
710 @post No change to the iUTContext class.
712 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
713 }; // TDiscoverer_ScanDirectoryIncrement_TransitionValidator
715 #include "DiscovererTransitionValidation.inl"
717 #endif // __DISCOVERERTRANSITIONVALIDATION_H__