os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarTransitions.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 on CRegistrar
18 #ifndef __REGISTRARTRANSITIONS_H__
19 #define __REGISTRARTRANSITIONS_H__
21 #include "LeakTestTransition.h"
23 #define CTransitionType CLeakTestTransition
25 // ______________________________________________________________________________
27 // Literals required by this Context for testing
28 _LIT(KNotFoundResourceFileName, "Z:\\system\\LIBS\\PLUGINS\\10009DB0.rsc");
29 _LIT(KResourceFileName, "Z:\\system\\LIBS\\PLUGINS\\10009DB1.rsc");
30 _LIT(KExampleDllFileName, "Z:\\system\\LIBS\\PLUGINS\\EComExample.dll");
33 Comments : Provide all the CRegistrar specific
34 parameters and behaviour on the CRegistrar
35 test class for a transition.
37 class CRegistrar_UnitTestContext : public CUnitTestContext
41 @fn CRegistrar_UnitTestContext(CDataLogger& aDataLogger,
42 MStateAccessor& aStateAccessor,
43 MTransitionObserver& aObserver,
44 CRegistryData& aRegistryData,
45 MRegistrarObserver& aRegistrarObserver,
47 Intended Usage : Default constructor.
48 Error Condition : None.
50 @param aDataLogger The output logging object.
51 @param aObserver The observer of this UnitTest's Transitions.
52 @param aStateAccessor WhiteBox state access to the CRegistrar class under test.
53 @param aRegistryData The registry data, used in CRegistrar construction
54 @param aRegistrarObserver The registrar observer, used for notifications.
55 @param aFs File server handle, used in CRegistrar construction
57 @post CRegistrar_UnitTestContext is fully constructed, and initialised.
59 inline CRegistrar_UnitTestContext(CDataLogger& aDataLogger,
60 MStateAccessor& aStateAccessor,
61 MTransitionObserver& aObserver,
62 CRegistryData& aRegistryData,
63 MRegistrarObserver& aRegistrarObserver,
67 @fn ~CRegistrar_UnitTestContext()
68 Intended Usage : Default Destructor
70 @pre CRegistrar_UnitTestContext is fully constructed.
71 @post CRegistrar_UnitTestContext is fully destroyed
73 virtual inline ~CRegistrar_UnitTestContext();
75 /** The instance of the class under test */
76 CRegistrar* iRegistrar;
77 /** The registry data required to construct a CRegistrar object */
78 CRegistryData& iRegistryData;
79 /** The observer of the registrar class */
80 MRegistrarObserver& iRegistrarObserver;
81 /** The file server handle required to construct a CRegistrar object */
83 /** The destination for the data discovered during a parse */
84 CRegistryData::CDllData* iDllData;
85 /** Unique Id of an interface implementation */
86 TUid iImplementationUid;
87 /** Unique Id of an interface */
89 /** The drive on which interface implementations can be found */
90 TDriveUnit iDriveUnit;
91 /** Information on a dll which contains interface implementations */
93 /** Stores the return code of the current transition. Used in post validation. */
94 TInt iReturnErrorCode;
95 /** Indicates if this is an update operation for ParseRegistrationDataL */
97 /** The entry to update for ParseRegistrationDataL */
99 }; // CRegistrar_UnitTestContext
101 // ______________________________________________________________________________
105 Comments : Transition test of the CRegistrar::NewL method.
107 class CRegistrar_NewL_Transition : public CTransition
111 @fn CRegistrar_NewL_Transition(CUnitTestContext& aUTContext,
112 TTransitionValidator& aValidator)
113 Intended Usage : Standard c'tor method.
114 Error Condition : None.
116 @param aUTContext The context this transition is operating in.
117 @param aValidator Used for checking the pre & post conditions of the test object.
119 @post CRegistrar_NewL_Transition is fully constructed.
121 CRegistrar_NewL_Transition(CUnitTestContext& aUTContext,
122 TTransitionValidator& aValidator);
125 Intended Usage : To execute the CRegistrar::NewL method for the test harness.
126 Error Condition : Leaves with an error code.
127 @leave KErrNoMemory, (@see CRegistrar::NewL)
130 @pre CRegistrar_NewL_Transition is fully constructed.
131 @post No change in the CRegistrar_NewL_Transition apart
132 from iRegistrar, which may have changed state.
133 (@see CRegistrar::NewL post-condition) for iRegistrar's new state.
135 inline void TransitMethodL();
139 Intended Usage : To provide access to the unit test context cast to the correct type.
140 Error Condition : None.
142 @return The unit test context cast to a CRegistrar_UnitTestContext
143 @pre iUTContext is a valid CRegistrar_UnitTestContext.
144 @post No change in the CRegistrar_NewL_Transition
146 inline CRegistrar_UnitTestContext& Context() const;
147 }; // CRegistrar_NewL_Transition
149 // ______________________________________________________________________________
153 Comments : Transition test of the CRegistrar::Dtor method.
155 class CRegistrar_Dtor_Transition : public CTransition
159 @fn CRegistrar_Dtor_Transition(CUnitTestContext& aUTContext,
160 TTransitionValidator& aValidator)
161 Intended Usage : Standard c'tor method.
162 Error Condition : None.
164 @param aUTContext The context this transition is operating in.
165 @param aValidator Used for checking the pre & post conditions of the test object.
167 @post CRegistrar_Dtor_Transition is fully constructed.
169 CRegistrar_Dtor_Transition(CUnitTestContext& aUTContext,
170 TTransitionValidator& aValidator);
173 Intended Usage : To execute the CRegistrar::Dtor method for the test harness.
174 Error Condition : Leaves with an error code.
175 @leave KErrNoMemory, (@see CRegistrar::Dtor)
178 @pre CRegistrar_Dtor_Transition is fully constructed.
179 @post No change in the CRegistrar_Dtor_Transition apart
180 from iRegistrar, which may have changed state.
181 (@see CRegistrar::Dtor post-condition) for iRegistrar's new state.
183 inline void TransitMethodL();
187 Intended Usage : To provide access to the unit test context cast to the correct type.
188 Error Condition : None.
190 @return The unit test context cast to a CRegistrar_UnitTestContext
191 @pre iUTContext is a valid CRegistrar_UnitTestContext.
192 @post No change in the CRegistrar_Dtor_Transition
194 inline CRegistrar_UnitTestContext& Context() const;
195 }; // CRegistrar_Dtor_Transition
197 // ______________________________________________________________________________
201 Comments : Transition test of the CRegistrar::DiscoveriesBegin method.
203 class CRegistrar_DiscoveriesBegin_Transition : public CTransition
207 @fn CRegistrar_DiscoveriesBegin_Transition(CUnitTestContext& aUTContext,
208 TTransitionValidator& aValidator)
209 Intended Usage : Standard c'tor method.
210 Error Condition : None.
212 @param aUTContext The context this transition is operating in.
213 @param aValidator Used for checking the pre & post conditions of the test object.
215 @post CRegistrar_DiscoveriesBegin_Transition is fully constructed.
217 CRegistrar_DiscoveriesBegin_Transition(CUnitTestContext& aUTContext,
218 TTransitionValidator& aValidator);
221 Intended Usage : To execute the CRegistrar::DiscoveriesBegin method for the test harness.
222 Error Condition : Leaves with an error code.
223 @leave KErrNoMemory, (@see CRegistrar::DiscoveriesBegin)
226 @pre CRegistrar_DiscoveriesBegin_Transition is fully constructed.
227 @post No change in the CRegistrar_DiscoveriesBegin_Transition apart
228 from iRegistrar, which may have changed state.
229 (@see CRegistrar::DiscoveriesBegin post-condition) for iRegistrar's new state.
231 inline void TransitMethodL();
235 Intended Usage : To provide access to the unit test context cast to the correct type.
236 Error Condition : None.
238 @return The unit test context cast to a CRegistrar_UnitTestContext
239 @pre iUTContext is a valid CRegistrar_UnitTestContext.
240 @post No change in the CRegistrar_DiscoveriesBegin_Transition
242 inline CRegistrar_UnitTestContext& Context() const;
243 }; // CRegistrar_DiscoveriesBegin_Transition
245 // ______________________________________________________________________________
249 Comments : Transition test of the CRegistrar::DiscoveriesComplete method.
251 class CRegistrar_DiscoveriesComplete_Transition : public CTransition
255 @fn CRegistrar_DiscoveriesComplete_Transition(CUnitTestContext& aUTContext,
256 TTransitionValidator& aValidator)
257 Intended Usage : Standard c'tor method.
258 Error Condition : None.
260 @param aUTContext The context this transition is operating in.
261 @param aValidator Used for checking the pre & post conditions of the test object.
263 @post CRegistrar_DiscoveriesComplete_Transition is fully constructed.
265 CRegistrar_DiscoveriesComplete_Transition(CUnitTestContext& aUTContext,
266 TTransitionValidator& aValidator);
269 Intended Usage : To execute the CRegistrar::DiscoveriesComplete method for the test harness.
270 Error Condition : Leaves with an error code.
271 @leave KErrNoMemory, (@see CRegistrar::DiscoveriesComplete)
274 @pre CRegistrar_DiscoveriesComplete_Transition is fully constructed.
275 @post No change in the CRegistrar_DiscoveriesComplete_Transition apart
276 from iRegistrar, which may have changed state.
277 (@see CRegistrar::DiscoveriesComplete post-condition) for iRegistrar's new state.
279 inline void TransitMethodL();
283 Intended Usage : To provide access to the unit test context cast to the correct type.
284 Error Condition : None.
286 @return The unit test context cast to a CRegistrar_UnitTestContext
287 @pre iUTContext is a valid CRegistrar_UnitTestContext.
288 @post No change in the CRegistrar_DiscoveriesComplete_Transition
290 inline CRegistrar_UnitTestContext& Context() const;
291 }; // CRegistrar_DiscoveriesComplete_Transition
293 // ______________________________________________________________________________
297 Comments : Transition test of the CRegistrar::Resume method.
299 class CRegistrar_Resume_Transition : public CTransition
303 @fn CRegistrar_Resume_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 CRegistrar_Resume_Transition is fully constructed.
313 CRegistrar_Resume_Transition(CUnitTestContext& aUTContext,
314 TTransitionValidator& aValidator);
317 Intended Usage : To execute the CRegistrar::Resume method for the test harness.
318 Error Condition : Leaves with an error code.
319 @leave KErrNoMemory, (@see CRegistrar::Resume)
322 @pre CRegistrar_Resume_Transition is fully constructed.
323 @post No change in the CRegistrar_Resume_Transition apart
324 from iRegistrar, which may have changed state.
325 (@see CRegistrar::Resume post-condition) for iRegistrar'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 CRegistrar_UnitTestContext
335 @pre iUTContext is a valid CRegistrar_UnitTestContext.
336 @post No change in the CRegistrar_Resume_Transition
338 inline CRegistrar_UnitTestContext& Context() const;
339 }; // CRegistrar_Resume_Transition
341 // ______________________________________________________________________________
345 Comments : Transition test of the CRegistrar::Suspend method.
347 class CRegistrar_Suspend_Transition : public CTransition
351 @fn CRegistrar_Suspend_Transition(CUnitTestContext& aUTContext,
352 TTransitionValidator& aValidator)
353 Intended Usage : Standard c'tor method.
354 Error Condition : None.
356 @param aUTContext The context this transition is operating in.
357 @param aValidator Used for checking the pre & post conditions of the test object.
359 @post CRegistrar_Suspend_Transition is fully constructed.
361 CRegistrar_Suspend_Transition(CUnitTestContext& aUTContext,
362 TTransitionValidator& aValidator);
365 Intended Usage : To execute the CRegistrar::Suspend method for the test harness.
366 Error Condition : Leaves with an error code.
367 @leave KErrNoMemory, (@see CRegistrar::Suspend)
370 @pre CRegistrar_Suspend_Transition is fully constructed.
371 @post No change in the CRegistrar_Suspend_Transition apart
372 from iRegistrar, which may have changed state.
373 (@see CRegistrar::Suspend post-condition) for iRegistrar's new state.
375 inline void TransitMethodL();
379 Intended Usage : To provide access to the unit test context cast to the correct type.
380 Error Condition : None.
382 @return The unit test context cast to a CRegistrar_UnitTestContext
383 @pre iUTContext is a valid CRegistrar_UnitTestContext.
384 @post No change in the CRegistrar_Suspend_Transition
386 inline CRegistrar_UnitTestContext& Context() const;
387 }; // CRegistrar_Suspend_Transition
389 // ______________________________________________________________________________
393 Comments : Transition test of the CRegistrar::ParseL method.
395 class CRegistrar_ParseL_Transition : public CTransitionType
399 @fn CRegistrar_ParseL_Transition(CUnitTestContext& aUTContext,
400 TTransitionValidator& aValidator)
401 Intended Usage : Standard c'tor method.
402 Error Condition : None.
404 @param aUTContext The context this transition is operating in.
405 @param aValidator Used for checking the pre & post conditions of the test object.
407 @post CRegistrar_ParseL_Transition is fully constructed.
409 CRegistrar_ParseL_Transition(CUnitTestContext& aUTContext,
410 TTransitionValidator& aValidator);
413 Intended Usage : To execute the CRegistrar::ParseL method for the test harness.
414 Error Condition : Leaves with an error code.
415 @leave KErrNoMemory, (@see CRegistrar::ParseL)
418 @pre CRegistrar_ParseL_Transition is fully constructed.
419 @post No change in the CRegistrar_ParseL_Transition apart
420 from iRegistrar, which may have changed state.
421 (@see CRegistrar::ParseL post-condition) for iRegistrar's new state.
423 inline void TransitMethodL();
427 Intended Usage : To provide access to the unit test context cast to the correct type.
428 Error Condition : None.
430 @return The unit test context cast to a CRegistrar_UnitTestContext
431 @pre iUTContext is a valid CRegistrar_UnitTestContext.
432 @post No change in the CRegistrar_ParseL_Transition
434 inline CRegistrar_UnitTestContext& Context() const;
435 }; // CRegistrar_ParseL_Transition
437 // ______________________________________________________________________________
441 Comments : Transition test of the CRegistrar::Disable method.
443 class CRegistrar_Disable_Transition : public CTransition
447 @fn CRegistrar_Disable_Transition(CUnitTestContext& aUTContext,
448 TTransitionValidator& aValidator)
449 Intended Usage : Standard c'tor method.
450 Error Condition : None.
452 @param aUTContext The context this transition is operating in.
453 @param aValidator Used for checking the pre & post conditions of the test object.
455 @post CRegistrar_Disable_Transition is fully constructed.
457 CRegistrar_Disable_Transition(CUnitTestContext& aUTContext,
458 TTransitionValidator& aValidator);
461 Intended Usage : To execute the CRegistrar::Disable method for the test harness.
462 Error Condition : Leaves with an error code.
463 @leave KErrNoMemory, (@see CRegistrar::Disable)
466 @pre CRegistrar_Disable_Transition is fully constructed.
467 @post No change in the CRegistrar_Disable_Transition apart
468 from iRegistrar, which may have changed state.
469 (@see CRegistrar::Disable post-condition) for iRegistrar's new state.
471 inline void TransitMethodL();
475 Intended Usage : To provide access to the unit test context cast to the correct type.
476 Error Condition : None.
478 @return The unit test context cast to a CRegistrar_UnitTestContext
479 @pre iUTContext is a valid CRegistrar_UnitTestContext.
480 @post No change in the CRegistrar_Disable_Transition
482 inline CRegistrar_UnitTestContext& Context() const;
483 }; // CRegistrar_Disable_Transition
485 // ______________________________________________________________________________
489 Comments : Transition test of the CRegistrar::DriveReinstatedL method.
491 class CRegistrar_DriveReinstatedL_Transition : public CTransitionType
495 @fn CRegistrar_DriveReinstatedL_Transition(CUnitTestContext& aUTContext,
496 TTransitionValidator& aValidator)
497 Intended Usage : Standard c'tor method.
498 Error Condition : None.
500 @param aUTContext The context this transition is operating in.
501 @param aValidator Used for checking the pre & post conditions of the test object.
503 @post CRegistrar_DriveReinstatedL_Transition is fully constructed.
505 CRegistrar_DriveReinstatedL_Transition(CUnitTestContext& aUTContext,
506 TTransitionValidator& aValidator);
509 Intended Usage : To execute the CRegistrar::DriveReinstatedL method for the test harness.
510 Error Condition : Leaves with an error code.
511 @leave KErrNoMemory, (@see CRegistrar::DriveReinstatedL)
514 @pre CRegistrar_DriveReinstatedL_Transition is fully constructed.
515 @post No change in the CRegistrar_DriveReinstatedL_Transition apart
516 from iRegistrar, which may have changed state.
517 (@see CRegistrar::DriveReinstatedL post-condition) for iRegistrar's new state.
519 inline void TransitMethodL();
523 Intended Usage : To provide access to the unit test context cast to the correct type.
524 Error Condition : None.
526 @return The unit test context cast to a CRegistrar_UnitTestContext
527 @pre iUTContext is a valid CRegistrar_UnitTestContext.
528 @post No change in the CRegistrar_DriveReinstatedL_Transition
530 inline CRegistrar_UnitTestContext& Context() const;
531 }; // CRegistrar_DriveReinstatedL_Transition
533 // ______________________________________________________________________________
537 Comments : Transition test of the CRegistrar::DriveRemoved method.
539 class CRegistrar_DriveRemoved_Transition : public CTransition
543 @fn CRegistrar_DriveRemoved_Transition(CUnitTestContext& aUTContext,
544 TTransitionValidator& aValidator)
545 Intended Usage : Standard c'tor method.
546 Error Condition : None.
548 @param aUTContext The context this transition is operating in.
549 @param aValidator Used for checking the pre & post conditions of the test object.
551 @post CRegistrar_DriveRemoved_Transition is fully constructed.
553 CRegistrar_DriveRemoved_Transition(CUnitTestContext& aUTContext,
554 TTransitionValidator& aValidator);
557 Intended Usage : To execute the CRegistrar::DriveRemoved method for the test harness.
558 Error Condition : Leaves with an error code.
559 @leave KErrNoMemory, (@see CRegistrar::DriveRemoved)
562 @pre CRegistrar_DriveRemoved_Transition is fully constructed.
563 @post No change in the CRegistrar_DriveRemoved_Transition apart
564 from iRegistrar, which may have changed state.
565 (@see CRegistrar::DriveRemoved post-condition) for iRegistrar's new state.
567 inline void TransitMethodL();
571 Intended Usage : To provide access to the unit test context cast to the correct type.
572 Error Condition : None.
574 @return The unit test context cast to a CRegistrar_UnitTestContext
575 @pre iUTContext is a valid CRegistrar_UnitTestContext.
576 @post No change in the CRegistrar_DriveRemoved_Transition
578 inline CRegistrar_UnitTestContext& Context() const;
579 }; // CRegistrar_DriveRemoved_Transition
581 // ______________________________________________________________________________
585 Comments : Transition test of the CRegistrar::Enable method.
587 class CRegistrar_Enable_Transition : public CTransition
591 @fn CRegistrar_Enable_Transition(CUnitTestContext& aUTContext,
592 TTransitionValidator& aValidator)
593 Intended Usage : Standard c'tor method.
594 Error Condition : None.
596 @param aUTContext The context this transition is operating in.
597 @param aValidator Used for checking the pre & post conditions of the test object.
599 @post CRegistrar_Enable_Transition is fully constructed.
601 CRegistrar_Enable_Transition(CUnitTestContext& aUTContext,
602 TTransitionValidator& aValidator);
605 Intended Usage : To execute the CRegistrar::Enable method for the test harness.
606 Error Condition : Leaves with an error code.
607 @leave KErrNoMemory, (@see CRegistrar::Enable)
610 @pre CRegistrar_Enable_Transition is fully constructed.
611 @post No change in the CRegistrar_Enable_Transition apart
612 from iRegistrar, which may have changed state.
613 (@see CRegistrar::Enable post-condition) for iRegistrar's new state.
615 inline void TransitMethodL();
619 Intended Usage : To provide access to the unit test context cast to the correct type.
620 Error Condition : None.
622 @return The unit test context cast to a CRegistrar_UnitTestContext
623 @pre iUTContext is a valid CRegistrar_UnitTestContext.
624 @post No change in the CRegistrar_Enable_Transition
626 inline CRegistrar_UnitTestContext& Context() const;
627 }; // CRegistrar_Enable_Transition
630 // ______________________________________________________________________________
634 Comments : Transition test of the CRegistrar::RegisterDiscoveryL method.
636 class CRegistrar_RegisterDiscoveryL_Transition : public CTransitionType
640 @fn CRegistrar_RegisterDiscoveryL_Transition(CUnitTestContext& aUTContext,
641 TTransitionValidator& aValidator)
642 Intended Usage : Standard c'tor method.
643 Error Condition : None.
645 @param aUTContext The context this transition is operating in.
646 @param aValidator Used for checking the pre & post conditions of the test object.
648 @post CRegistrar_RegisterDiscoveryL_Transition is fully constructed.
650 CRegistrar_RegisterDiscoveryL_Transition(CUnitTestContext& aUTContext,
651 TTransitionValidator& aValidator);
654 Intended Usage : To execute the CRegistrar::RegisterDiscoveryL method for the test harness.
655 Error Condition : Leaves with an error code.
656 @leave KErrNoMemory, (@see CRegistrar::RegisterDiscoveryL)
659 @pre CRegistrar_RegisterDiscoveryL_Transition is fully constructed.
660 @post No change in the CRegistrar_RegisterDiscoveryL_Transition apart
661 from iRegistrar, which may have changed state.
662 (@see CRegistrar::RegisterDiscoveryL post-condition) for iRegistrar's new state.
664 inline void TransitMethodL();
668 Intended Usage : To provide access to the unit test context cast to the correct type.
669 Error Condition : None.
671 @return The unit test context cast to a CRegistrar_UnitTestContext
672 @pre iUTContext is a valid CRegistrar_UnitTestContext.
673 @post No change in the CRegistrar_RegisterDiscoveryL_Transition
675 inline CRegistrar_UnitTestContext& Context() const;
676 }; // CRegistrar_RegisterDiscoveryL_Transition
678 // ______________________________________________________________________________
682 Comments : Transition test of the CRegistrar::ParseRegistrationDataL method.
684 class CRegistrar_ParseRegistrationDataL_Transition : public CTransitionType
688 @fn CRegistrar_ParseRegistrationDataL_Transition(CUnitTestContext& aUTContext,
689 TTransitionValidator& aValidator)
690 Intended Usage : Standard c'tor method.
691 Error Condition : None.
693 @param aUTContext The context this transition is operating in.
694 @param aValidator Used for checking the pre & post conditions of the test object.
696 @post CRegistrar_ParseRegistrationDataL_Transition is fully constructed.
698 CRegistrar_ParseRegistrationDataL_Transition(CUnitTestContext& aUTContext,
699 TTransitionValidator& aValidator);
702 Intended Usage : To execute the CRegistrar::ParseRegistrationDataL method for the test harness.
703 Error Condition : Leaves with an error code.
704 @leave KErrNoMemory, (@see CRegistrar::ParseRegistrationDataL)
707 @pre CRegistrar_ParseRegistrationDataL_Transition is fully constructed.
708 @post No change in the CRegistrar_ParseRegistrationDataL_Transition apart
709 from iRegistrar, which may have changed state.
710 (@see CRegistrar::ParseRegistrationDataL post-condition) for iRegistrar's new state.
712 inline void TransitMethodL();
716 Intended Usage : To provide access to the unit test context cast to the correct type.
717 Error Condition : None.
719 @return The unit test context cast to a CRegistrar_UnitTestContext
720 @pre iUTContext is a valid CRegistrar_UnitTestContext.
721 @post No change in the CRegistrar_ParseRegistrationDataL_Transition
723 inline CRegistrar_UnitTestContext& Context() const;
724 }; // CRegistrar_ParseRegistrationDataL_Transition
727 #include "RegistrarTransitions.inl"
729 #endif // __REGISTRARTRANSITIONS_H__