os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitions.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 transitions over the methods in the CDiscoverer class
18 #ifndef __DISCOVERERTRANSITIONS_H__
19 #define __DISCOVERERTRANSITIONS_H__
21 #include "StateAccessor.h"
22 #include "LeakTestTransition.h"
23 #include <test_bed/datalogger.h>
24 #include "Discoverer.h"
25 #include "DiscovererStateAccessor.h"
26 #include <test_bed/unittest.h>
30 #define CTransitionType CLeakTestTransition
32 // ______________________________________________________________________________
36 Comments : Provide all the CreateAndDestroyUnit Test's specific
37 parameters and behaviour on the CDiscoverer
38 test class for a transition.
40 class CDiscoverer_UnitTestContext : public CUnitTestContext
44 @fn CDiscoverer_UnitTestContext(CDataLogger& aDataLogger,
45 MStateAccessor& aStateAccessor,
46 MTransitionObserver& aObserver,
48 Intended Usage : Default constructor.
49 Error Condition : None.
51 @param aDataLogger The output logging object.
52 @param aObserver The observer of this UnitTest's Transitions.
53 @param aStateAccessor WhiteBox state access to the CDiscoverer class under test.
54 @param aFs A reference to an connected file server instance.
56 @post CDiscoverer_UnitTestContext is fully constructed, and initialised.
58 CDiscoverer_UnitTestContext(CDataLogger& aDataLogger,
59 MStateAccessor& aStateAccessor,
60 MTransitionObserver& aObserver,
64 @fn CDiscoverer_UnitTestContext::~CDiscoverer_UnitTestContext()
65 Intended Usage : Default Destructor
67 @pre CDiscoverer_UnitTestContext is fully constructed
68 @post CDiscoverer_UnitTestContext is fully destroyed
70 virtual ~CDiscoverer_UnitTestContext();
73 @fn DiscovererObserver()
74 Intended Usage : Discoverer Observer acessor
76 @return MDiscovererObserver& A reference to the observer interface
77 to be used for this unit test
78 @pre CDiscoverer_UnitTestContext is fully constructed
79 @post CDiscoverer_UnitTestContext is fully destroyed
81 MDiscovererObserver& DiscovererObserver();
83 /** The instance of the class under test */
84 CDiscoverer* iDiscoverer;
85 /** A reference to the observer stub of the CDiscoverer */
86 CObserverStub* iDiscovererObserver;
87 /** A reference to an connected file server instance. */
89 /** A Dir object referring to the discovery directory file list */
91 /** A parse referring to a DLL's file path */
93 /** A modified TEntry referring to a DLL */
94 TEntry* iReturnedFileEntry;
95 /** A drive letter referring to the mounted / unmounted drive */
96 TDriveUnit iDriveUnit;
97 /** A status pointer for signalling async completion from the stub routines */
98 TRequestStatus* iNotificationStatus;
99 }; // CDiscoverer_UnitTestContext
101 // ______________________________________________________________________________
105 Comments : Transition test of the CDiscoverer::NewL method.
107 class CDiscoverer_NewL_Transition : public CTransitionType
111 @fn CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
112 TTransitionValidator& aValidator)
113 Intended Usage : Standard c'tor method.
114 Error Condition : None.
116 @param Discoverer_CreateAndDestroy_UnitTestContext
117 The parameters to use for test purposes.
119 @post CDiscoverer_NewL_Transition is fully constructed.
121 inline CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
122 TTransitionValidator& aValidator);
125 Intended Usage : To execute the CDiscoverer::NewL method for the test harness.
126 Error Condition : Leaves with an error code.
127 @leave KErrNoMemory, (@see CDiscoverer::NewL)
130 @pre CDiscoverer_NewL_Transition is fully constructed.
131 @post No change in the CDiscoverer_NewL_Transition apart
132 from iDiscoverer, which may have changed state.
133 (@see CDiscoverer::NewL post-condition) for iDiscoverer's new state.
135 inline void TransitMethodL();
138 @fn inline CDiscoverer_UnitTestContext& Context() const
139 Intended Usage : Obtain the context for this unit test
141 @return CDiscoverer_UnitTestContext& The unit test context object.
142 @pre CDiscoverer_NewL_Transition is fully constructed.
144 inline CDiscoverer_UnitTestContext& Context() const;
145 }; // CDiscoverer_NewL_Transition
147 // ______________________________________________________________________________
151 Comments : Transition test of the CDiscoverer::Dtor method.
154 class CDiscoverer_Dtor_Transition : public CTransition
158 @fn CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
159 TTransitionValidator& aValidator)
160 Intended Usage : Standard c'tor method.
161 Error Condition : None.
163 @param Discoverer_CreateAndDestroy_UnitTestContext
164 The parameters to use for test purposes.
166 @post CDiscoverer_Dtor_Transition is fully constructed.
168 inline CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
169 TTransitionValidator& aValidator);
172 Intended Usage : To execute the CDiscoverer::Dtor method for the test harness.
173 Error Condition : Leaves with an error code.
174 @leave KErrNoMemory, (@see CDiscoverer::Dtor)
177 @pre CDiscoverer_Dtor_Transition is fully constructed.
178 @post No change in the CDiscoverer_Dtor_Transition apart
179 from iDiscoverer, which may have changed state.
180 (@see CDiscoverer::Dtor post-condition) for iDiscoverer's new state.
182 inline void TransitMethodL();
185 @fn inline CDiscoverer_UnitTestContext& Context() const
186 Intended Usage : Obtain the context for this unit test
188 @return CDiscoverer_UnitTestContext& The unit test context object.
189 @pre CDiscoverer_Dtor_Transition is fully constructed.
191 inline CDiscoverer_UnitTestContext& Context() const;
192 }; // CDiscoverer_Dtor_Transition
194 // ______________________________________________________________________________
198 Comments : Transition test of the CDiscoverer::Resume method.
200 class CDiscoverer_Resume_Transition : public CTransition
204 @fn CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
205 TTransitionValidator& aValidator)
206 Intended Usage : Standard c'tor method.
207 Error Condition : None.
209 @param aUTContext The context this transition is operating in.
210 @param aValidator Used for checking the pre & post conditions of the test object.
212 @post CDiscoverer_Resume_Transition is fully constructed.
214 inline CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
215 TTransitionValidator& aValidator);
218 Intended Usage : To execute the CDiscoverer::Resume method for the test harness.
219 Error Condition : Leaves with an error code.
220 @leave KErrNoMemory, (@see CDiscoverer::Resume)
223 @pre CDiscoverer_Resume_Transition is fully constructed.
224 @post No change in the CDiscoverer_Resume_Transition apart
225 from iDiscoverer, which may have changed state.
226 (@see CDiscoverer::Resume post-condition) for iDiscoverer's new state.
228 inline void TransitMethodL();
232 Intended Usage : To provide access to the unit test context cast to the correct type.
233 Error Condition : None.
235 @return The unit test context cast to a CDiscoverer_UnitTestContext
236 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
237 @post No change in the CDiscoverer_Resume_Transition
239 inline CDiscoverer_UnitTestContext& Context() const;
240 }; // CDiscoverer_Resume_Transition
242 // ______________________________________________________________________________
246 Comments : Transition test of the CDiscoverer::Suspend method.
248 class CDiscoverer_Suspend_Transition : public CTransition
252 @fn CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
253 TTransitionValidator& aValidator)
254 Intended Usage : Standard c'tor method.
255 Error Condition : None.
257 @param aUTContext The context this transition is operating in.
258 @param aValidator Used for checking the pre & post conditions of the test object.
260 @post CDiscoverer_Suspend_Transition is fully constructed.
262 inline CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
263 TTransitionValidator& aValidator);
266 Intended Usage : To execute the CDiscoverer::Suspend method for the test harness.
267 Error Condition : Leaves with an error code.
268 @leave KErrNoMemory, (@see CDiscoverer::Suspend)
271 @pre CDiscoverer_Suspend_Transition is fully constructed.
272 @post No change in the CDiscoverer_Suspend_Transition apart
273 from iDiscoverer, which may have changed state.
274 (@see CDiscoverer::Suspend post-condition) for iDiscoverer's new state.
276 inline void TransitMethodL();
280 Intended Usage : To provide access to the unit test context cast to the correct type.
281 Error Condition : None.
283 @return The unit test context cast to a CDiscoverer_UnitTestContext
284 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
285 @post No change in the CDiscoverer_Suspend_Transition
287 inline CDiscoverer_UnitTestContext& Context() const;
288 }; // CDiscoverer_Suspend_Transition
290 // CDiscoverer internal transitions
292 // ______________________________________________________________________________
296 Comments : Transition test of the CDiscoverer::Notification method.
299 class CDiscoverer_Notification_Transition : public CTransition
303 @fn CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
304 TTransitionValidator& aValidator)
305 Intended Usage : Standard c'tor method.
306 Error Condition : None.
308 @param aUTContext The context this transition is operating in.
309 @param aValidator Used for checking the pre & post conditions of the test object.
311 @post CDiscoverer_Notification_Transition is fully constructed.
313 inline CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
314 TTransitionValidator& aValidator);
317 Intended Usage : To execute the CDiscoverer::Notification method for the test harness.
318 Error Condition : Leaves with an error code.
319 @leave KErrNoMemory, (@see CDiscoverer::Notification)
322 @pre CDiscoverer_Notification_Transition is fully constructed.
323 @post No change in the CDiscoverer_Notification_Transition apart
324 from iDiscoverer, which may have changed state.
325 (@see CDiscoverer::Notification post-condition) for iDiscoverer's new state.
327 inline void TransitMethodL();
331 Intended Usage : To provide access to the unit test context cast to the correct type.
332 Error Condition : None.
334 @return The unit test context cast to a CDiscoverer_UnitTestContext
335 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
336 @post No change in the CDiscoverer_Notification_Transition
338 inline CDiscoverer_UnitTestContext& Context() const;
339 }; // CDiscoverer_Notification_Transition
341 // ______________________________________________________________________________
345 Comments : Transition test of the CDiscoverer::ScanDirectoryL method.
348 class CDiscoverer_ScanDirectoryL_Transition : public CTransitionType
352 @fn CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
353 TTransitionValidator& aValidator)
354 Intended Usage : Standard c'tor method.
355 Error Condition : None.
357 @param aUTContext The context this transition is operating in.
358 @param aValidator Used for checking the pre & post conditions of the test object.
360 @post CDiscoverer_ScanDirectoryL_Transition is fully constructed.
362 CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
363 TTransitionValidator& aValidator);
366 Intended Usage : To execute the CDiscoverer::ScanDirectoryL method for the test harness.
367 Error Condition : Leaves with an error code.
368 @leave KErrNoMemory, (@see CDiscoverer::ScanDirectoryL)
371 @pre CDiscoverer_ScanDirectoryL_Transition is fully constructed.
372 @post No change in the CDiscoverer_ScanDirectoryL_Transition apart
373 from iDiscoverer, which may have changed state.
374 (@see CDiscoverer::ScanDirectoryL post-condition) for iDiscoverer's new state.
376 inline void TransitMethodL();
380 Intended Usage : To provide access to the unit test context cast to the correct type.
381 Error Condition : None.
383 @return The unit test context cast to a CDiscoverer_UnitTestContext
384 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
385 @post No change in the CDiscoverer_ScanDirectoryL_Transition
387 inline CDiscoverer_UnitTestContext& Context() const;
388 }; // CDiscoverer_ScanDirectoryL_Transition
390 // ______________________________________________________________________________
394 Comments : Transition test of the CDiscoverer::ScanDirectoryIncrementL method.
397 class CDiscoverer_ScanDirectoryIncrementL_Transition : public CTransitionType
401 @fn CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
402 TTransitionValidator& aValidator)
403 Intended Usage : Standard c'tor method.
404 Error Condition : None.
406 @param aUTContext The context this transition is operating in.
407 @param aValidator Used for checking the pre & post conditions of the test object.
409 @post CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
411 CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
412 TTransitionValidator& aValidator);
415 Intended Usage : To execute the CDiscoverer::ScanDirectoryIncrementL method for the test harness.
416 Error Condition : Leaves with an error code.
417 @leave KErrNoMemory, (@see CDiscoverer::ScanDirectoryIncrementL)
420 @pre CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
421 @post No change in the CDiscoverer_ScanDirectoryIncrementL_Transition apart
422 from iDiscoverer, which may have changed state.
423 (@see CDiscoverer::ScanDirectoryIncrementL post-condition) for iDiscoverer's new state.
425 inline void TransitMethodL();
429 Intended Usage : To provide access to the unit test context cast to the correct type.
430 Error Condition : None.
432 @return The unit test context cast to a CDiscoverer_UnitTestContext
433 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
434 @post No change in the CDiscoverer_ScanDirectoryIncrementL_Transition
436 inline CDiscoverer_UnitTestContext& Context() const;
437 }; // CDiscoverer_ScanDirectoryIncrementL_Transition
439 // ______________________________________________________________________________
443 Comments : Transition test of the CDiscoverer::ScanDirectoryCancel method.
446 class CDiscoverer_ScanDirectoryCancel_Transition : public CTransition
450 @fn CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
451 TTransitionValidator& aValidator)
452 Intended Usage : Standard c'tor method.
453 Error Condition : None.
455 @param aUTContext The context this transition is operating in.
456 @param aValidator Used for checking the pre & post conditions of the test object.
458 @post CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
460 CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
461 TTransitionValidator& aValidator);
464 Intended Usage : To execute the CDiscoverer::ScanDirectoryCancel method for the test harness.
465 Error Condition : Leaves with an error code.
466 @leave KErrNoMemory, (@see CDiscoverer::ScanDirectoryCancel)
469 @pre CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
470 @post No change in the CDiscoverer_ScanDirectoryCancel_Transition apart
471 from iDiscoverer, which may have changed state.
472 (@see CDiscoverer::ScanDirectoryCancel post-condition) for iDiscoverer's new state.
474 inline void TransitMethodL();
478 Intended Usage : To provide access to the unit test context cast to the correct type.
479 Error Condition : None.
481 @return The unit test context cast to a CDiscoverer_UnitTestContext
482 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
483 @post No change in the CDiscoverer_ScanDirectoryCancel_Transition
485 inline CDiscoverer_UnitTestContext& Context() const;
486 }; // CDiscoverer_ScanDirectoryCancel_Transition
488 // ______________________________________________________________________________
492 Comments : Transition test of the CDiscoverer::CompleteNotificationProcessing method.
495 class CDiscoverer_CompleteNotificationProcessing_Transition : public CTransition
499 @fn CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
500 TTransitionValidator& aValidator)
501 Intended Usage : Standard c'tor method.
502 Error Condition : None.
504 @param aUTContext The context this transition is operating in.
505 @param aValidator Used for checking the pre & post conditions of the test object.
507 @post CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
509 CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
510 TTransitionValidator& aValidator);
513 Intended Usage : To execute the CDiscoverer::CompleteNotificationProcessing method for the test harness.
514 Error Condition : Leaves with an error code.
515 @leave KErrNoMemory, (@see CDiscoverer::CompleteNotificationProcessing)
518 @pre CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
519 @post No change in the CDiscoverer_CompleteNotificationProcessing_Transition apart
520 from iDiscoverer, which may have changed state.
521 (@see CDiscoverer::CompleteNotificationProcessing post-condition) for iDiscoverer's new state.
523 inline void TransitMethodL();
527 Intended Usage : To provide access to the unit test context cast to the correct type.
528 Error Condition : None.
530 @return The unit test context cast to a CDiscoverer_UnitTestContext
531 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
532 @post No change in the CDiscoverer_CompleteNotificationProcessing_Transition
534 inline CDiscoverer_UnitTestContext& Context() const;
535 }; // CDiscoverer_CompleteNotificationProcessing_Transition
537 // ______________________________________________________________________________
541 Comments : Transition test of the CDiscoverer::IsValidEntryL method.
543 class CDiscoverer_IsValidEntryL_Transition : public CTransitionType
547 @fn CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
548 TTransitionValidator& aValidator)
549 Intended Usage : Standard c'tor method.
550 Error Condition : None.
552 @param aUTContext The context this transition is operating in.
553 @param aValidator Used for checking the pre & post conditions of the test object.
555 @post CDiscoverer_IsValidEntryL_Transition is fully constructed.
557 CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
558 TTransitionValidator& aValidator);
561 Intended Usage : To execute the CDiscoverer::IsValidEntryL method for the test harness.
562 Error Condition : Leaves with an error code.
563 @leave KErrNoMemory, (@see CDiscoverer::IsValidEntryL)
566 @pre CDiscoverer_IsValidEntryL_Transition is fully constructed.
567 @post No change in the CDiscoverer_IsValidEntryL_Transition apart
568 from iDiscoverer, which may have changed state.
569 (@see CDiscoverer::IsValidEntryL post-condition) for iDiscoverer's new state.
571 inline void TransitMethodL();
575 Intended Usage : To provide access to the unit test context cast to the correct type.
576 Error Condition : None.
578 @return The unit test context cast to a CDiscoverer_UnitTestContext
579 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
580 @post No change in the CDiscoverer_IsValidEntryL_Transition
582 inline CDiscoverer_UnitTestContext& Context() const;
583 }; // CDiscoverer_IsValidEntryL_Transition
585 // ______________________________________________________________________________
589 Comments : Transition test of the CDiscoverer::ProcessEntryL method.
591 class CDiscoverer_ProcessEntryL_Transition : public CTransitionType
595 @fn CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
596 TTransitionValidator& aValidator)
597 Intended Usage : Standard c'tor method.
598 Error Condition : None.
600 @param aUTContext The context this transition is operating in.
601 @param aValidator Used for checking the pre & post conditions of the test object.
603 @post CDiscoverer_ProcessEntryL_Transition is fully constructed.
605 CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
606 TTransitionValidator& aValidator);
609 Intended Usage : To execute the CDiscoverer::ProcessEntryL method for the test harness.
610 Error Condition : Leaves with an error code.
611 @leave KErrNoMemory, (@see CDiscoverer::ProcessEntryL)
614 @pre CDiscoverer_ProcessEntryL_Transition is fully constructed.
615 @post No change in the CDiscoverer_ProcessEntryL_Transition apart
616 from iDiscoverer, which may have changed state.
617 (@see CDiscoverer::ProcessEntryL post-condition) for iDiscoverer's new state.
619 inline void TransitMethodL();
623 Intended Usage : To provide access to the unit test context cast to the correct type.
624 Error Condition : None.
626 @return The unit test context cast to a CDiscoverer_UnitTestContext
627 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
628 @post No change in the CDiscoverer_ProcessEntryL_Transition
630 inline CDiscoverer_UnitTestContext& Context() const;
631 }; // CDiscoverer_ProcessEntryL_Transition
633 // ______________________________________________________________________________
637 Comments : Transition test of the CDiscoverer::MountDriveL method.
639 class CDiscoverer_MountDriveL_Transition : public CTransitionType
643 @fn CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
644 TTransitionValidator& aValidator)
645 Intended Usage : Standard c'tor method.
646 Error Condition : None.
648 @param aUTContext The context this transition is operating in.
649 @param aValidator Used for checking the pre & post conditions of the test object.
651 @post CDiscoverer_MountDriveL_Transition is fully constructed.
653 CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
654 TTransitionValidator& aValidator);
657 Intended Usage : To execute the CDiscoverer::MountDriveL method for the test harness.
658 Error Condition : Leaves with an error code.
659 @leave KErrNoMemory, (@see CDiscoverer::MountDriveL)
662 @pre CDiscoverer_MountDriveL_Transition is fully constructed.
663 @post No change in the CDiscoverer_MountDriveL_Transition apart
664 from iDiscoverer, which may have changed state.
665 (@see CDiscoverer::MountDriveL post-condition) for iDiscoverer's new state.
667 inline void TransitMethodL();
671 Intended Usage : To provide access to the unit test context cast to the correct type.
672 Error Condition : None.
674 @return The unit test context cast to a CDiscoverer_UnitTestContext
675 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
676 @post No change in the CDiscoverer_MountDriveL_Transition
678 inline CDiscoverer_UnitTestContext& Context() const;
679 }; // CDiscoverer_MountDriveL_Transition
681 // ______________________________________________________________________________
685 Comments : Transition test of the CDiscoverer::UnmountDrive method.
687 class CDiscoverer_UnmountDrive_Transition : public CTransition
691 @fn CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
692 TTransitionValidator& aValidator)
693 Intended Usage : Standard c'tor method.
694 Error Condition : None.
696 @param aUTContext The context this transition is operating in.
697 @param aValidator Used for checking the pre & post conditions of the test object.
699 @post CDiscoverer_UnmountDrive_Transition is fully constructed.
701 CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
702 TTransitionValidator& aValidator);
705 Intended Usage : To execute the CDiscoverer::UnmountDrive method for the test harness.
706 Error Condition : Leaves with an error code.
707 @leave KErrNoMemory, (@see CDiscoverer::UnmountDrive)
710 @pre CDiscoverer_UnmountDrive_Transition is fully constructed.
711 @post No change in the CDiscoverer_UnmountDrive_Transition apart
712 from iDiscoverer, which may have changed state.
713 (@see CDiscoverer::UnmountDrive post-condition) for iDiscoverer's new state.
715 inline void TransitMethodL();
719 Intended Usage : To provide access to the unit test context cast to the correct type.
720 Error Condition : None.
722 @return The unit test context cast to a CDiscoverer_UnitTestContext
723 @pre iUTContext is a valid CDiscoverer_UnitTestContext.
724 @post No change in the CDiscoverer_UnmountDrive_Transition
726 inline CDiscoverer_UnitTestContext& Context() const;
727 }; // CDiscoverer_UnmountDrive_Transition
730 #include "DiscovererTransitions.inl"
732 #endif // __DISCOVERERTRANSITIONS_H__