os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTransitions.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 definition of the transition classes for the CRegistryData tests.
18 #ifndef __REGISTRYDATATRANSITIONS_H__
19 #define __REGISTRYDATATRANSITIONS_H__
21 #include "RegistryData.h"
23 #include <test_bed/datalogger.h>
24 #include "LeakTestTransition.h"
25 #include "RegistryDataStateAccessor.h"
27 #define CTransitionType CLeakTestTransition
29 // ______________________________________________________________________________
33 Comments : Provide all the CRegistryData specific
34 parameters and behaviour on the CRegistryData
35 test class for a transition.
37 class CRegistryData_UnitTestContext : public CUnitTestContext
41 @fn CRegistryData_UnitTestContext(CDataLogger& aDataLogger,
42 MStateAccessor& aStateAccessor,
43 MTransitionObserver& aObserver,
45 Intended Usage : Default constructor.
46 Error Condition : None.
48 @param aDataLogger The output logging object.
49 @param aObserver The observer of this UnitTest's Transitions.
50 @param aStateAccessor WhiteBox state access to the CRegistryData class under test.
51 @param aFs A reference to a connected file server instance.
53 @post CRegistryData_UnitTestContext is fully constructed, and initialised.
55 inline CRegistryData_UnitTestContext(CDataLogger& aDataLogger,
56 MStateAccessor& aStateAccessor,
57 MTransitionObserver& aObserver,
61 @fn ~CRegistryData_UnitTestContext()
62 Intended Usage : Default Destructor
64 @pre CRegistryData_UnitTestContext is fully constructed.
65 @post CRegistryData_UnitTestContext is fully destroyed
67 virtual inline ~CRegistryData_UnitTestContext();
69 /** The instance of the class under test */
70 CRegistryData* iRegistryData;
71 /** A reference to an connected file server instance. */
73 /** The current drive unit identifier */
74 TDriveUnit iDriveUnit;
75 /** The pointer to the DllData entry */
76 CRegistryData::CDllData* iDllData;
77 /** The updated entry which we use in call to UpdateDllEntry */
78 CRegistryData::CDllData* iNewDllData;
80 A reference to the implementation entry in the registry :
82 const CImplementationInformation* iImplementationRef;
84 A reference to the implementation entry in the registry :
86 const CImplementationInformation* iSecondImplementationRef;
88 A list of returned UIDs from the list methods
90 RImplInfoArray* iUidList;
91 /** UID for an implementation of an interface */
92 TUid iImplementationUid;
93 /** UID to identify a particular interface */
95 /** UID to identify a specific dll */
97 /** The directory entry data for a dll */
99 /** The update flag */
101 /** Input file stream for registry load testing */
102 RFileReadStream iReadStream;
103 /** Output file streams for registry persistence testing */
104 RFileWriteStream iWriteStream;
105 /** A methods return status code */
106 TInt iMethodCompletionStatus;
107 /** The drive index returned by IsRegistered... so we know which drive to update on */
108 TInt iFoundDriveIndex;
109 /** Used by SetEnabledState() - ETrue to enable an implementation, EFalse to disable it. */
111 }; // CRegistryData_UnitTestContext
113 // ______________________________________________________________________________
117 Comments : Transition test of the CRegistryData::NewL method.
119 class CRegistryData_NewL_Transition : public CTransition
123 @fn CRegistryData_NewL_Transition(CUnitTestContext& aUTContext,
124 TTransitionValidator& aValidator)
125 Intended Usage : Standard c'tor method.
126 Error Condition : None.
128 @param aUTContext The context this transition is operating in.
129 @param aValidator Used for checking the pre & post conditions of the test object.
131 @post CRegistryData_NewL_Transition is fully constructed.
133 CRegistryData_NewL_Transition(CUnitTestContext& aUTContext,
134 TTransitionValidator& aValidator);
137 Intended Usage : To execute the CRegistryData::NewL method for the test harness.
138 Error Condition : Leaves with an error code.
139 @leave KErrNoMemory, (@see CRegistryData::NewL)
142 @pre CRegistryData_NewL_Transition is fully constructed.
143 @post No change in the CRegistryData_NewL_Transition apart
144 from iRegistryData, which may have changed state.
145 (@see CRegistryData::NewL post-condition) for iRegistryData's new state.
147 inline void TransitMethodL();
151 Intended Usage : To provide access to the unit test context cast to the correct type.
152 Error Condition : None.
154 @return The unit test context cast to a CRegistryData_UnitTestContext
155 @pre iUTContext is a valid CRegistryData_UnitTestContext.
156 @post No change in the CRegistryData_NewL_Transition
158 inline CRegistryData_UnitTestContext& Context() const;
159 }; // CRegistryData_NewL_Transition
161 // ______________________________________________________________________________
165 Comments : Transition test of the CRegistryData::Dtor method.
167 class CRegistryData_Dtor_Transition : public CTransition
171 @fn CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext,
172 TTransitionValidator& aValidator)
173 Intended Usage : Standard c'tor method.
174 Error Condition : None.
176 @param aUTContext The context this transition is operating in.
177 @param aValidator Used for checking the pre & post conditions of the test object.
179 @post CRegistryData_Dtor_Transition is fully constructed.
181 CRegistryData_Dtor_Transition(CUnitTestContext& aUTContext,
182 TTransitionValidator& aValidator);
185 Intended Usage : To execute the CRegistryData::Dtor method for the test harness.
186 Error Condition : Leaves with an error code.
187 @leave KErrNoMemory, (@see CRegistryData::Dtor)
190 @pre CRegistryData_Dtor_Transition is fully constructed.
191 @post No change in the CRegistryData_Dtor_Transition apart
192 from iRegistryData, which may have changed state.
193 (@see CRegistryData::Dtor post-condition) for iRegistryData's new state.
195 inline void TransitMethodL();
199 Intended Usage : To provide access to the unit test context cast to the correct type.
200 Error Condition : None.
202 @return The unit test context cast to a CRegistryData_UnitTestContext
203 @pre iUTContext is a valid CRegistryData_UnitTestContext.
204 @post No change in the CRegistryData_Dtor_Transition
206 inline CRegistryData_UnitTestContext& Context() const;
207 }; // CRegistryData_Dtor_Transition
209 // ______________________________________________________________________________
213 Comments : Transition test of the CRegistryData::AddDllDataL method.
215 class CRegistryData_AddDllDataL_Transition : public CTransitionType
219 @fn CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext,
220 TTransitionValidator& aValidator)
221 Intended Usage : Standard c'tor method.
222 Error Condition : None.
224 @param aUTContext The context this transition is operating in.
225 @param aValidator Used for checking the pre & post conditions of the test object.
227 @post CRegistryData_AddDllDataL_Transition is fully constructed.
229 CRegistryData_AddDllDataL_Transition(CUnitTestContext& aUTContext,
230 TTransitionValidator& aValidator);
233 Intended Usage : To execute the CRegistryData::AddDllDataL method for the test harness.
234 Error Condition : Leaves with an error code.
235 @leave KErrNoMemory, (@see CRegistryData::AddDllDataL)
238 @pre CRegistryData_AddDllDataL_Transition is fully constructed.
239 @post No change in the CRegistryData_AddDllDataL_Transition apart
240 from iRegistryData, which may have changed state.
241 (@see CRegistryData::AddDllDataL post-condition) for iRegistryData's new state.
243 inline void TransitMethodL();
247 Intended Usage : To provide access to the unit test context cast to the correct type.
248 Error Condition : None.
250 @return The unit test context cast to a CRegistryData_UnitTestContext
251 @pre iUTContext is a valid CRegistryData_UnitTestContext.
252 @post No change in the CRegistryData_AddDllDataL_Transition
254 inline CRegistryData_UnitTestContext& Context() const;
255 }; // CRegistryData_AddDllDataL_Transition
257 // ______________________________________________________________________________
261 Comments : Transition test of the CRegistryData::GetImplementationInformationL method.
263 class CRegistryData_GetImplementationInformationL_Transition : public CTransitionType
267 @fn CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext,
268 TTransitionValidator& aValidator)
269 Intended Usage : Standard c'tor method.
270 Error Condition : None.
272 @param aUTContext The context this transition is operating in.
273 @param aValidator Used for checking the pre & post conditions of the test object.
275 @post CRegistryData_GetImplementationInformationL_Transition is fully constructed.
277 CRegistryData_GetImplementationInformationL_Transition(CUnitTestContext& aUTContext,
278 TTransitionValidator& aValidator);
281 Intended Usage : To execute the CRegistryData::GetImplementationInformationL method for the test harness.
282 Error Condition : Leaves with an error code.
283 @leave KErrNoMemory, (@see CRegistryData::GetImplementationInformationL)
286 @pre CRegistryData_GetImplementationInformationL_Transition is fully constructed.
287 @post No change in the CRegistryData_GetImplementationInformationL_Transition apart
288 from iRegistryData, which may have changed state.
289 (@see CRegistryData::GetImplementationInformationL post-condition) for iRegistryData's new state.
291 inline void TransitMethodL();
295 Intended Usage : To provide access to the unit test context cast to the correct type.
296 Error Condition : None.
298 @return The unit test context cast to a CRegistryData_UnitTestContext
299 @pre iUTContext is a valid CRegistryData_UnitTestContext.
300 @post No change in the CRegistryData_GetImplementationInformationL_Transition
302 inline CRegistryData_UnitTestContext& Context() const;
303 }; // CRegistryData_GetImplementationInformationL_Transition
305 // ______________________________________________________________________________
309 Comments : Transition test of the CRegistryData::IsRegisteredWithDateL method.
311 class CRegistryData_IsRegisteredWithDateL_Transition : public CTransitionType
315 @fn CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext,
316 TTransitionValidator& aValidator)
317 Intended Usage : Standard c'tor method.
318 Error Condition : None.
320 @param aUTContext The context this transition is operating in.
321 @param aValidator Used for checking the pre & post conditions of the test object.
323 @post CRegistryData_IsRegisteredWithDateL_Transition is fully constructed.
325 CRegistryData_IsRegisteredWithDateL_Transition(CUnitTestContext& aUTContext,
326 TTransitionValidator& aValidator);
329 Intended Usage : To execute the CRegistryData::IsRegisteredWithDateL method for the test harness.
330 Error Condition : Leaves with an error code.
331 @leave KErrNoMemory, (@see CRegistryData::IsRegisteredWithDateL)
334 @pre CRegistryData_IsRegisteredWithDateL_Transition is fully constructed.
335 @post No change in the CRegistryData_IsRegisteredWithDateL_Transition apart
336 from iRegistryData, which may have changed state.
337 (@see CRegistryData::IsRegisteredWithDateL post-condition) for iRegistryData's new state.
339 inline void TransitMethodL();
343 Intended Usage : To provide access to the unit test context cast to the correct type.
344 Error Condition : None.
346 @return The unit test context cast to a CRegistryData_UnitTestContext
347 @pre iUTContext is a valid CRegistryData_UnitTestContext.
348 @post No change in the CRegistryData_IsRegisteredWithDateL_Transition
350 inline CRegistryData_UnitTestContext& Context() const;
351 }; // CRegistryData_IsRegisteredWithDateL_Transition
353 // ______________________________________________________________________________
357 Comments : Transition test of the CRegistryData::ListImplementationsL method.
359 class CRegistryData_ListImplementationsL_Transition : public CTransitionType
363 @fn CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext,
364 TTransitionValidator& aValidator)
365 Intended Usage : Standard c'tor method.
366 Error Condition : None.
368 @param aUTContext The context this transition is operating in.
369 @param aValidator Used for checking the pre & post conditions of the test object.
371 @post CRegistryData_ListImplementationsL_Transition is fully constructed.
373 CRegistryData_ListImplementationsL_Transition(CUnitTestContext& aUTContext,
374 TTransitionValidator& aValidator);
377 Intended Usage : To execute the CRegistryData::ListImplementationsL method for the test harness.
378 Error Condition : Leaves with an error code.
379 @leave KErrNoMemory, (@see CRegistryData::ListImplementationsL)
382 @pre CRegistryData_ListImplementationsL_Transition is fully constructed.
383 @post No change in the CRegistryData_ListImplementationsL_Transition apart
384 from iRegistryData, which may have changed state.
385 (@see CRegistryData::ListImplementationsL post-condition) for iRegistryData's new state.
387 inline void TransitMethodL();
391 Intended Usage : To provide access to the unit test context cast to the correct type.
392 Error Condition : None.
394 @return The unit test context cast to a CRegistryData_UnitTestContext
395 @pre iUTContext is a valid CRegistryData_UnitTestContext.
396 @post No change in the CRegistryData_ListImplementationsL_Transition
398 inline CRegistryData_UnitTestContext& Context() const;
399 }; // CRegistryData_ListImplementationsL_Transition
401 // ______________________________________________________________________________
405 Comments : Transition test of the CRegistryData::SetEnabledState method.
407 class CRegistryData_SetEnabledState_Transition : public CTransitionType
411 @fn CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext,
412 TTransitionValidator& aValidator)
413 Intended Usage : Standard c'tor method.
414 Error Condition : None.
416 @param aUTContext The context this transition is operating in.
417 @param aValidator Used for checking the pre & post conditions of the test object.
419 @post CRegistryData_SetEnabledState_Transition is fully constructed.
421 CRegistryData_SetEnabledState_Transition(CUnitTestContext& aUTContext,
422 TTransitionValidator& aValidator);
425 Intended Usage : To execute the CRegistryData::SetEnabledState method for the
427 Error Condition : Leaves with an error code.
431 @pre CRegistryData_SetEnabledState_Transition is fully constructed.
432 @post No change in the CRegistryData_SetEnabledState_Transition apart
433 from iRegistryData, which may have changed state.
434 (@see CRegistryData::SetEnabledState post-condition) for iRegistryData's new state.
436 inline void TransitMethodL();
440 Intended Usage : To provide access to the unit test context cast to the correct type.
441 Error Condition : None.
443 @return The unit test context cast to a CRegistryData_UnitTestContext
444 @pre iUTContext is a valid CRegistryData_UnitTestContext.
445 @post No change in the CRegistryData_MarkDisabled_Transition
447 inline CRegistryData_UnitTestContext& Context() const;
448 }; // CRegistryData_MarkDisabled_Transition
450 // ______________________________________________________________________________
454 Comments : Transition test of the CRegistryData::PersistNowL method.
456 class CRegistryData_PersistNowL_Transition : public CTransitionType
460 @fn CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext,
461 TTransitionValidator& aValidator)
462 Intended Usage : Standard c'tor method.
463 Error Condition : None.
465 @param aUTContext The context this transition is operating in.
466 @param aValidator Used for checking the pre & post conditions of the test object.
468 @post CRegistryData_PersistNowL_Transition is fully constructed.
470 CRegistryData_PersistNowL_Transition(CUnitTestContext& aUTContext,
471 TTransitionValidator& aValidator);
474 Intended Usage : To execute the CRegistryData::PersistNowL method for the test harness.
475 Error Condition : Leaves with an error code.
476 @leave KErrNoMemory, (@see CRegistryData::PersistNowL)
479 @pre CRegistryData_PersistNowL_Transition is fully constructed.
480 @post No change in the CRegistryData_PersistNowL_Transition apart
481 from iRegistryData, which may have changed state.
482 (@see CRegistryData::PersistNowL post-condition) for iRegistryData's new state.
484 inline void TransitMethodL();
488 Intended Usage : To provide access to the unit test context cast to the correct type.
489 Error Condition : None.
491 @return The unit test context cast to a CRegistryData_UnitTestContext
492 @pre iUTContext is a valid CRegistryData_UnitTestContext.
493 @post No change in the CRegistryData_PersistNowL_Transition
495 inline CRegistryData_UnitTestContext& Context() const;
496 }; // CRegistryData_PersistNowL_Transition
498 // ______________________________________________________________________________
502 Comments : Transition test of the CRegistryData::TemporaryUninstallL method.
504 class CRegistryData_TemporaryUninstallL_Transition : public CTransitionType
508 @fn CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
509 TTransitionValidator& aValidator)
510 Intended Usage : Standard c'tor method.
511 Error Condition : None.
513 @param aUTContext The context this transition is operating in.
514 @param aValidator Used for checking the pre & post conditions of the test object.
516 @post CRegistryData_TemporaryUninstallL_Transition is fully constructed.
518 CRegistryData_TemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
519 TTransitionValidator& aValidator);
522 Intended Usage : To execute the CRegistryData::TemporaryUninstall method for the test harness.
523 Error Condition : Leaves with an error code.
524 @leave KErrNoMemory, (@see CRegistryData::TemporaryUninstall)
527 @pre CRegistryData_TemporaryUninstall_Transition is fully constructed.
528 @post No change in the CRegistryData_TemporaryUninstall_Transition apart
529 from iRegistryData, which may have changed state.
530 (@see CRegistryData::TemporaryUninstall post-condition) for iRegistryData's new state.
532 inline void TransitMethodL();
536 Intended Usage : To provide access to the unit test context cast to the correct type.
537 Error Condition : None.
539 @return The unit test context cast to a CRegistryData_UnitTestContext
540 @pre iUTContext is a valid CRegistryData_UnitTestContext.
541 @post No change in the CRegistryData_TemporaryUninstall_Transition
543 inline CRegistryData_UnitTestContext& Context() const;
544 }; // CRegistryData_TemporaryUninstall_Transition
546 // ______________________________________________________________________________
550 Comments : Transition test of the CRegistryData::UndoTemporaryUninstallL method.
552 class CRegistryData_UndoTemporaryUninstallL_Transition : public CTransitionType
556 @fn CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
557 TTransitionValidator& aValidator)
558 Intended Usage : Standard c'tor method.
559 Error Condition : None.
561 @param aUTContext The context this transition is operating in.
562 @param aValidator Used for checking the pre & post conditions of the test object.
564 @post CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed.
566 CRegistryData_UndoTemporaryUninstallL_Transition(CUnitTestContext& aUTContext,
567 TTransitionValidator& aValidator);
570 Intended Usage : To execute the CRegistryData::UndoTemporaryUninstallL method for the test harness.
571 Error Condition : Leaves with an error code.
572 @leave KErrNoMemory, (@see CRegistryData::UndoTemporaryUninstallL)
575 @pre CRegistryData_UndoTemporaryUninstallL_Transition is fully constructed.
576 @post No change in the CRegistryData_UndoTemporaryUninstallL_Transition apart
577 from iRegistryData, which may have changed state.
578 (@see CRegistryData::UndoTemporaryUninstallL post-condition) for iRegistryData's new state.
580 inline void TransitMethodL();
584 Intended Usage : To provide access to the unit test context cast to the correct type.
585 Error Condition : None.
587 @return The unit test context cast to a CRegistryData_UnitTestContext
588 @pre iUTContext is a valid CRegistryData_UnitTestContext.
589 @post No change in the CRegistryData_UndoTemporaryUninstallL_Transition
591 inline CRegistryData_UnitTestContext& Context() const;
592 }; // CRegistryData_UndoTemporaryUninstallL_Transition
594 // ______________________________________________________________________________
598 Comments : Transition test of the CRegistryData::UpdateDllDataL method.
600 class CRegistryData_UpdateDllDataL_Transition : public CTransitionType
604 @fn CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext,
605 TTransitionValidator& aValidator)
606 Intended Usage : Standard c'tor method.
607 Error Condition : None.
609 @param aUTContext The context this transition is operating in.
610 @param aValidator Used for checking the pre & post conditions of the test object.
612 @post CRegistryData_UpdateDllDataL_Transition is fully constructed.
614 CRegistryData_UpdateDllDataL_Transition(CUnitTestContext& aUTContext,
615 TTransitionValidator& aValidator);
618 Intended Usage : To execute the CRegistryData::UpdateDllDataL method for the test harness.
619 Error Condition : Leaves with an error code.
620 @leave KErrNoMemory, (@see CRegistryData::UpdateDllDataL)
623 @pre CRegistryData_UpdateDllDataL_Transition is fully constructed.
624 @post No change in the CRegistryData_UpdateDllDataL_Transition apart
625 from iRegistryData, which may have changed state.
626 (@see CRegistryData::UpdateDllDataL post-condition) for iRegistryData's new state.
628 inline void TransitMethodL();
632 Intended Usage : To provide access to the unit test context cast to the correct type.
633 Error Condition : None.
635 @return The unit test context cast to a CRegistryData_UnitTestContext
636 @pre iUTContext is a valid CRegistryData_UnitTestContext.
637 @post No change in the CRegistryData_UpdateDllDataL_Transition
639 inline CRegistryData_UnitTestContext& Context() const;
640 }; // CRegistryData_UpdateDllDataL_Transition
642 // ______________________________________________________________________________
646 Comments : Transition test of the CRegistryData::BuildIndexesL method.
648 class CRegistryData_BuildIndexesL_Transition : public CTransitionType
652 @fn CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext,
653 TTransitionValidator& aValidator)
654 Intended Usage : Standard c'tor method.
655 Error Condition : None.
657 @param aUTContext The context this transition is operating in.
658 @param aValidator Used for checking the pre & post conditions of the test object.
660 @post CRegistryData_BuildIndexesL_Transition is fully constructed.
662 CRegistryData_BuildIndexesL_Transition(CUnitTestContext& aUTContext,
663 TTransitionValidator& aValidator);
666 Intended Usage : To execute the CRegistryData::BuildIndexesL method for the test harness.
667 Error Condition : Leaves with an error code.
668 @leave KErrNoMemory, (@see CRegistryData::BuildIndexesL)
671 @pre CRegistryData_BuildIndexesL_Transition is fully constructed.
672 @post No change in the CRegistryData_BuildIndexesL_Transition apart
673 from iRegistryData, which may have changed state.
674 (@see CRegistryData::BuildIndexesL post-condition) for iRegistryData's new state.
676 inline void TransitMethodL();
680 Intended Usage : To provide access to the unit test context cast to the correct type.
681 Error Condition : None.
683 @return The unit test context cast to a CRegistryData_UnitTestContext
684 @pre iUTContext is a valid CRegistryData_UnitTestContext.
685 @post No change in the CRegistryData_BuildIndexesL_Transition
687 inline CRegistryData_UnitTestContext& Context() const;
688 }; // CRegistryData_BuildIndexesL_Transition
690 // ______________________________________________________________________________
694 Comments : Transition test of the CRegistryData::IndexedFind method.
696 class CRegistryData_IndexedFind_Transition : public CTransitionType
700 @fn CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext,
701 TTransitionValidator& aValidator)
702 Intended Usage : Standard c'tor method.
703 Error Condition : None.
705 @param aUTContext The context this transition is operating in.
706 @param aValidator Used for checking the pre & post conditions of the test object.
708 @post CRegistryData_IndexedFind_Transition is fully constructed.
710 CRegistryData_IndexedFind_Transition(CUnitTestContext& aUTContext,
711 TTransitionValidator& aValidator);
714 Intended Usage : To execute the CRegistryData::IndexedFind method for the test harness.
715 Error Condition : Leaves with an error code.
716 @leave KErrNoMemory, (@see CRegistryData::IndexedFind)
719 @pre CRegistryData_IndexedFind_Transition is fully constructed.
720 @post No change in the CRegistryData_IndexedFind_Transition apart
721 from iRegistryData, which may have changed state.
722 (@see CRegistryData::IndexedFind post-condition) for iRegistryData's new state.
724 inline void TransitMethodL();
728 Intended Usage : To provide access to the unit test context cast to the correct type.
729 Error Condition : None.
731 @return The unit test context cast to a CRegistryData_UnitTestContext
732 @pre iUTContext is a valid CRegistryData_UnitTestContext.
733 @post No change in the CRegistryData_IndexedFind_Transition
735 inline CRegistryData_UnitTestContext& Context() const;
736 }; // CRegistryData_IndexedFind_Transition
738 // ______________________________________________________________________________
742 Comments : Transition test of the CRegistryData::RestoreL method.
744 class CRegistryData_RestoreL_Transition : public CTransitionType
748 @fn CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext,
749 TTransitionValidator& aValidator)
750 Intended Usage : Standard c'tor method.
751 Error Condition : None.
753 @param aUTContext The context this transition is operating in.
754 @param aValidator Used for checking the pre & post conditions of the test object.
756 @post CRegistryData_RestoreL_Transition is fully constructed.
758 CRegistryData_RestoreL_Transition(CUnitTestContext& aUTContext,
759 TTransitionValidator& aValidator);
762 Intended Usage : To execute the CRegistryData::RestoreL method for the test harness.
763 Error Condition : Leaves with an error code.
764 @leave KErrNoMemory, (@see CRegistryData::RestoreL)
767 @pre CRegistryData_RestoreL_Transition is fully constructed.
768 @post No change in the CRegistryData_RestoreL_Transition apart
769 from iRegistryData, which may have changed state.
770 (@see CRegistryData::RestoreL post-condition) for iRegistryData's new state.
772 inline void TransitMethodL();
776 Intended Usage : To provide access to the unit test context cast to the correct type.
777 Error Condition : None.
779 @return The unit test context cast to a CRegistryData_UnitTestContext
780 @pre iUTContext is a valid CRegistryData_UnitTestContext.
781 @post No change in the CRegistryData_RestoreL_Transition
783 inline CRegistryData_UnitTestContext& Context() const;
784 }; // CRegistryData_RestoreL_Transition
786 // ______________________________________________________________________________
790 Comments : Transition test of the CRegistryData::StoreL method.
792 class CRegistryData_StoreL_Transition : public CTransitionType
796 @fn CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext,
797 TTransitionValidator& aValidator)
798 Intended Usage : Standard c'tor method.
799 Error Condition : None.
801 @param aUTContext The context this transition is operating in.
802 @param aValidator Used for checking the pre & post conditions of the test object.
804 @post CRegistryData_StoreL_Transition is fully constructed.
806 CRegistryData_StoreL_Transition(CUnitTestContext& aUTContext,
807 TTransitionValidator& aValidator);
810 Intended Usage : To execute the CRegistryData::StoreL method for the test harness.
811 Error Condition : Leaves with an error code.
812 @leave KErrNoMemory, (@see CRegistryData::StoreL)
815 @pre CRegistryData_StoreL_Transition is fully constructed.
816 @post No change in the CRegistryData_StoreL_Transition apart
817 from iRegistryData, which may have changed state.
818 (@see CRegistryData::StoreL post-condition) for iRegistryData's new state.
820 inline void TransitMethodL();
824 Intended Usage : To provide access to the unit test context cast to the correct type.
825 Error Condition : None.
827 @return The unit test context cast to a CRegistryData_UnitTestContext
828 @pre iUTContext is a valid CRegistryData_UnitTestContext.
829 @post No change in the CRegistryData_StoreL_Transition
831 inline CRegistryData_UnitTestContext& Context() const;
832 }; // CRegistryData_StoreL_Transition
834 // ______________________________________________________________________________
838 Comments : Transition test of the CRegistryData::MatchOnUid method.
840 class CRegistryData_MatchOnUid_Transition : public CTransitionType
844 @fn CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext,
845 TTransitionValidator& aValidator)
846 Intended Usage : Standard c'tor method.
847 Error Condition : None.
849 @param aUTContext The context this transition is operating in.
850 @param aValidator Used for checking the pre & post conditions of the test object.
852 @post CRegistryData_MatchOnUid_Transition is fully constructed.
854 CRegistryData_MatchOnUid_Transition(CUnitTestContext& aUTContext,
855 TTransitionValidator& aValidator);
858 Intended Usage : To execute the CRegistryData::MatchOnUid method for the test harness.
859 Error Condition : Leaves with an error code.
860 @leave KErrNoMemory, (@see CRegistryData::MatchOnUid)
863 @pre CRegistryData_MatchOnUid_Transition is fully constructed.
864 @post No change in the CRegistryData_MatchOnUid_Transition apart
865 from iRegistryData, which may have changed state.
866 (@see CRegistryData::MatchOnUid post-condition) for iRegistryData's new state.
868 inline void TransitMethodL();
872 Intended Usage : To provide access to the unit test context cast to the correct type.
873 Error Condition : None.
875 @return The unit test context cast to a CRegistryData_UnitTestContext
876 @pre iUTContext is a valid CRegistryData_UnitTestContext.
877 @post No change in the CRegistryData_MatchOnUid_Transition
879 inline CRegistryData_UnitTestContext& Context() const;
880 }; // CRegistryData_MatchOnUid_Transition
882 // ______________________________________________________________________________
886 Comments : Transition test of the CRegistryData::DiscoveriesBeginning method.
888 class CRegistryData_DiscoveriesBeginning_Transition : public CTransition
892 @fn CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext,
893 TTransitionValidator& aValidator)
894 Intended Usage : Standard c'tor method.
895 Error Condition : None.
897 @param aUTContext The context this transition is operating in.
898 @param aValidator Used for checking the pre & post conditions of the test object.
900 @post CRegistryData_DiscoveriesBeginning_Transition is fully constructed.
902 CRegistryData_DiscoveriesBeginning_Transition(CUnitTestContext& aUTContext,
903 TTransitionValidator& aValidator);
906 Intended Usage : To execute the CRegistryData::DiscoveriesBeginning method for the test harness.
907 Error Condition : Leaves with an error code.
908 @leave KErrNoMemory, (@see CRegistryData::DiscoveriesBeginning)
911 @pre CRegistryData_DiscoveriesBeginning_Transition is fully constructed.
912 @post No change in the CRegistryData_DiscoveriesBeginning_Transition apart
913 from iRegistryData, which may have changed state.
914 (@see CRegistryData::DiscoveriesBeginning post-condition) for iRegistryData's new state.
916 inline void TransitMethodL();
920 Intended Usage : To provide access to the unit test context cast to the correct type.
921 Error Condition : None.
923 @return The unit test context cast to a CRegistryData_UnitTestContext
924 @pre iUTContext is a valid CRegistryData_UnitTestContext.
925 @post No change in the CRegistryData_DiscoveriesBeginning_Transition
927 inline CRegistryData_UnitTestContext& Context() const;
928 }; // CRegistryData_DiscoveriesBeginning_Transition
930 #include "RegistryDataTransitions.inl"
932 #endif // __REGISTRYDATATRANSITIONS_H__