os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistrarTest/RegistrarTransitions.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definition of the transition classes on CRegistrar
    15 // 
    16 //
    17 
    18 #ifndef __REGISTRARTRANSITIONS_H__
    19 #define __REGISTRARTRANSITIONS_H__
    20 
    21 #include "LeakTestTransition.h"
    22 
    23 #define CTransitionType CLeakTestTransition
    24 
    25 // ______________________________________________________________________________
    26 //
    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");
    31 /**
    32 	@internalComponent
    33 	Comments : Provide all the CRegistrar specific
    34 	parameters and behaviour on the CRegistrar
    35 	test class for a transition.
    36  */
    37 class CRegistrar_UnitTestContext : public CUnitTestContext
    38 	{
    39 public:
    40 	/**
    41 		@fn				CRegistrar_UnitTestContext(CDataLogger&			aDataLogger,
    42 												   MStateAccessor&		aStateAccessor,
    43 												   MTransitionObserver& aObserver,
    44 												   CRegistryData&		aRegistryData,
    45 												   MRegistrarObserver&	aRegistrarObserver,
    46 												   RFs&					aFs)
    47 		Intended Usage	: Default constructor.
    48 		Error Condition	: None. 
    49 		@since			7.0
    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
    56 		@pre 			None.
    57 		@post			CRegistrar_UnitTestContext is fully constructed, and initialised.
    58 	*/
    59 	inline CRegistrar_UnitTestContext(CDataLogger&			aDataLogger,
    60 									  MStateAccessor&		aStateAccessor,
    61 									  MTransitionObserver&	aObserver,
    62 									  CRegistryData&		aRegistryData,
    63 									  MRegistrarObserver&	aRegistrarObserver,
    64 									  RFs&					aFs);
    65 
    66 	/**
    67 		@fn				~CRegistrar_UnitTestContext()
    68 		Intended Usage	: Default Destructor
    69 		@since			7.0
    70 		@pre 			CRegistrar_UnitTestContext is fully constructed.
    71 		@post			CRegistrar_UnitTestContext is fully destroyed
    72 		*/
    73 		virtual inline ~CRegistrar_UnitTestContext();
    74 
    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 */
    82 	RFs& iFs;
    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 */
    88 	TUid	iInterfaceUid;
    89 /** The drive on which interface implementations can be found */
    90 	TDriveUnit	iDriveUnit;
    91 /** Information on a dll which contains interface implementations */
    92 	TEntry		iDllEntry;
    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 */
    96 	TBool iUpdate;
    97 /** The entry to update for ParseRegistrationDataL */
    98 	TInt iIndex;
    99 	}; // CRegistrar_UnitTestContext
   100 
   101 // ______________________________________________________________________________
   102 //
   103 /**
   104 	@internalComponent
   105 	Comments : Transition test of the CRegistrar::NewL method.
   106  */
   107 class CRegistrar_NewL_Transition : public CTransition
   108 	{
   109 public:
   110 	/**
   111 		@fn				CRegistrar_NewL_Transition(CUnitTestContext& aUTContext,
   112 												   TTransitionValidator& aValidator)
   113 		Intended Usage	: Standard c'tor method.
   114 		Error Condition	: None.
   115 		@since			7.0
   116 		@param			aUTContext The context this transition is operating in.
   117 		@param			aValidator Used for checking the pre & post conditions of the test object.
   118 		@pre 			None.
   119 		@post			CRegistrar_NewL_Transition is fully constructed.
   120 	*/
   121 	CRegistrar_NewL_Transition(CUnitTestContext& aUTContext,
   122 							   TTransitionValidator& aValidator);
   123 	/**
   124 		@fn				TransitMethodL()
   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)
   128 		@since			7.0
   129 		@return			None
   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.
   134 	*/
   135 	inline void TransitMethodL();
   136 
   137 	/**
   138 		@fn				Context() const
   139 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   140 		Error Condition	: None.
   141 		@since			7.0
   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
   145 	*/
   146 	inline CRegistrar_UnitTestContext& Context() const;
   147 	};	// CRegistrar_NewL_Transition
   148 
   149 // ______________________________________________________________________________
   150 //
   151 /**
   152 	@internalComponent
   153 	Comments : Transition test of the CRegistrar::Dtor method.
   154  */
   155 class CRegistrar_Dtor_Transition : public CTransition
   156 	{
   157 public:
   158 	/**
   159 		@fn				CRegistrar_Dtor_Transition(CUnitTestContext& aUTContext,
   160 												   TTransitionValidator& aValidator)
   161 		Intended Usage	: Standard c'tor method.
   162 		Error Condition	: None.
   163 		@since			7.0
   164 		@param			aUTContext The context this transition is operating in.
   165 		@param			aValidator Used for checking the pre & post conditions of the test object.
   166 		@pre 			None.
   167 		@post			CRegistrar_Dtor_Transition is fully constructed.
   168 	*/
   169 	CRegistrar_Dtor_Transition(CUnitTestContext& aUTContext,
   170 							   TTransitionValidator& aValidator);
   171 	/**
   172 		@fn				TransitMethodL()
   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)
   176 		@since			7.0
   177 		@return			None
   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.
   182 	*/
   183 	inline void TransitMethodL();
   184 
   185 	/**
   186 		@fn				Context() const
   187 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   188 		Error Condition	: None.
   189 		@since			7.0
   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
   193 	*/
   194 	inline CRegistrar_UnitTestContext& Context() const;
   195 	};	// CRegistrar_Dtor_Transition
   196 
   197 // ______________________________________________________________________________
   198 //
   199 /**
   200 	@internalComponent
   201 	Comments : Transition test of the CRegistrar::DiscoveriesBegin method.
   202  */
   203 class CRegistrar_DiscoveriesBegin_Transition : public CTransition
   204 	{
   205 public:
   206 	/**
   207 		@fn				CRegistrar_DiscoveriesBegin_Transition(CUnitTestContext& aUTContext,
   208 																	TTransitionValidator& aValidator)
   209 		Intended Usage	: Standard c'tor method.
   210 		Error Condition	: None.
   211 		@since			7.0
   212 		@param			aUTContext The context this transition is operating in.
   213 		@param			aValidator Used for checking the pre & post conditions of the test object.
   214 		@pre 			None.
   215 		@post			CRegistrar_DiscoveriesBegin_Transition is fully constructed.
   216 	*/
   217 	CRegistrar_DiscoveriesBegin_Transition(CUnitTestContext& aUTContext,
   218 													TTransitionValidator& aValidator);
   219 	/**
   220 		@fn				TransitMethodL()
   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)
   224 		@since			7.0
   225 		@return			None
   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.
   230 	*/
   231 	inline void TransitMethodL();
   232 
   233 	/**
   234 		@fn				Context() const
   235 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   236 		Error Condition	: None.
   237 		@since			7.0
   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
   241 	*/
   242 	inline CRegistrar_UnitTestContext& Context() const;
   243 	};	// CRegistrar_DiscoveriesBegin_Transition
   244 
   245 // ______________________________________________________________________________
   246 //
   247 /**
   248 	@internalComponent
   249 	Comments : Transition test of the CRegistrar::DiscoveriesComplete method.
   250  */
   251 class CRegistrar_DiscoveriesComplete_Transition : public CTransition
   252 	{
   253 public:
   254 	/**
   255 		@fn				CRegistrar_DiscoveriesComplete_Transition(CUnitTestContext& aUTContext,
   256 																	TTransitionValidator& aValidator)
   257 		Intended Usage	: Standard c'tor method.
   258 		Error Condition	: None.
   259 		@since			7.0
   260 		@param			aUTContext The context this transition is operating in.
   261 		@param			aValidator Used for checking the pre & post conditions of the test object.
   262 		@pre 			None.
   263 		@post			CRegistrar_DiscoveriesComplete_Transition is fully constructed.
   264 	*/
   265 	CRegistrar_DiscoveriesComplete_Transition(CUnitTestContext& aUTContext,
   266 													TTransitionValidator& aValidator);
   267 	/**
   268 		@fn				TransitMethodL()
   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)
   272 		@since			7.0
   273 		@return			None
   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.
   278 	*/
   279 	inline void TransitMethodL();
   280 
   281 	/**
   282 		@fn				Context() const
   283 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   284 		Error Condition	: None.
   285 		@since			7.0
   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
   289 	*/
   290 	inline CRegistrar_UnitTestContext& Context() const;
   291 	};	// CRegistrar_DiscoveriesComplete_Transition
   292 
   293 // ______________________________________________________________________________
   294 //
   295 /**
   296 	@internalComponent
   297 	Comments : Transition test of the CRegistrar::Resume method.
   298  */
   299 class CRegistrar_Resume_Transition : public CTransition
   300 	{
   301 public:
   302 	/**
   303 		@fn				CRegistrar_Resume_Transition(CUnitTestContext& aUTContext,
   304 																	TTransitionValidator& aValidator)
   305 		Intended Usage	: Standard c'tor method.
   306 		Error Condition	: None.
   307 		@since			7.0
   308 		@param			aUTContext The context this transition is operating in.
   309 		@param			aValidator Used for checking the pre & post conditions of the test object.
   310 		@pre 			None.
   311 		@post			CRegistrar_Resume_Transition is fully constructed.
   312 	*/
   313 	CRegistrar_Resume_Transition(CUnitTestContext& aUTContext,
   314 													TTransitionValidator& aValidator);
   315 	/**
   316 		@fn				TransitMethodL()
   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)
   320 		@since			7.0
   321 		@return			None
   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.
   326 	*/
   327 	inline void TransitMethodL();
   328 
   329 	/**
   330 		@fn				Context() const
   331 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   332 		Error Condition	: None.
   333 		@since			7.0
   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
   337 	*/
   338 	inline CRegistrar_UnitTestContext& Context() const;
   339 	};	// CRegistrar_Resume_Transition
   340 
   341 // ______________________________________________________________________________
   342 //
   343 /**
   344 	@internalComponent
   345 	Comments : Transition test of the CRegistrar::Suspend method.
   346  */
   347 class CRegistrar_Suspend_Transition : public CTransition
   348 	{
   349 public:
   350 	/**
   351 		@fn				CRegistrar_Suspend_Transition(CUnitTestContext& aUTContext,
   352 																	TTransitionValidator& aValidator)
   353 		Intended Usage	: Standard c'tor method.
   354 		Error Condition	: None.
   355 		@since			7.0
   356 		@param			aUTContext The context this transition is operating in.
   357 		@param			aValidator Used for checking the pre & post conditions of the test object.
   358 		@pre 			None.
   359 		@post			CRegistrar_Suspend_Transition is fully constructed.
   360 	*/
   361 	CRegistrar_Suspend_Transition(CUnitTestContext& aUTContext,
   362 													TTransitionValidator& aValidator);
   363 	/**
   364 		@fn				TransitMethodL()
   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)
   368 		@since			7.0
   369 		@return			None
   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.
   374 	*/
   375 	inline void TransitMethodL();
   376 
   377 	/**
   378 		@fn				Context() const
   379 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   380 		Error Condition	: None.
   381 		@since			7.0
   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
   385 	*/
   386 	inline CRegistrar_UnitTestContext& Context() const;
   387 	};	// CRegistrar_Suspend_Transition
   388 
   389 // ______________________________________________________________________________
   390 //
   391 /**
   392 	@internalComponent
   393 	Comments : Transition test of the CRegistrar::ParseL method.
   394  */
   395 class CRegistrar_ParseL_Transition : public CTransitionType
   396 	{
   397 public:
   398 	/**
   399 		@fn				CRegistrar_ParseL_Transition(CUnitTestContext& aUTContext,
   400 																	TTransitionValidator& aValidator)
   401 		Intended Usage	: Standard c'tor method.
   402 		Error Condition	: None.
   403 		@since			7.0
   404 		@param			aUTContext The context this transition is operating in.
   405 		@param			aValidator Used for checking the pre & post conditions of the test object.
   406 		@pre 			None.
   407 		@post			CRegistrar_ParseL_Transition is fully constructed.
   408 	*/
   409 	CRegistrar_ParseL_Transition(CUnitTestContext& aUTContext,
   410 													TTransitionValidator& aValidator);
   411 	/**
   412 		@fn				TransitMethodL()
   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)
   416 		@since			7.0
   417 		@return			None
   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.
   422 	*/
   423 	inline void TransitMethodL();
   424 
   425 	/**
   426 		@fn				Context() const
   427 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   428 		Error Condition	: None.
   429 		@since			7.0
   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
   433 	*/
   434 	inline CRegistrar_UnitTestContext& Context() const;
   435 	};	// CRegistrar_ParseL_Transition
   436 
   437 // ______________________________________________________________________________
   438 //
   439 /**
   440 	@internalComponent
   441 	Comments : Transition test of the CRegistrar::Disable method.
   442  */
   443 class CRegistrar_Disable_Transition : public CTransition
   444 	{
   445 public:
   446 	/**
   447 		@fn				CRegistrar_Disable_Transition(CUnitTestContext& aUTContext,
   448 																	TTransitionValidator& aValidator)
   449 		Intended Usage	: Standard c'tor method.
   450 		Error Condition	: None.
   451 		@since			7.0
   452 		@param			aUTContext The context this transition is operating in.
   453 		@param			aValidator Used for checking the pre & post conditions of the test object.
   454 		@pre 			None.
   455 		@post			CRegistrar_Disable_Transition is fully constructed.
   456 	*/
   457 	CRegistrar_Disable_Transition(CUnitTestContext& aUTContext,
   458 													TTransitionValidator& aValidator);
   459 	/**
   460 		@fn				TransitMethodL()
   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)
   464 		@since			7.0
   465 		@return			None
   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.
   470 	*/
   471 	inline void TransitMethodL();
   472 
   473 	/**
   474 		@fn				Context() const
   475 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   476 		Error Condition	: None.
   477 		@since			7.0
   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
   481 	*/
   482 	inline CRegistrar_UnitTestContext& Context() const;
   483 	};	// CRegistrar_Disable_Transition
   484 
   485 // ______________________________________________________________________________
   486 //
   487 /**
   488 	@internalComponent
   489 	Comments : Transition test of the CRegistrar::DriveReinstatedL method.
   490  */
   491 class CRegistrar_DriveReinstatedL_Transition : public CTransitionType
   492 	{
   493 public:
   494 	/**
   495 		@fn				CRegistrar_DriveReinstatedL_Transition(CUnitTestContext& aUTContext,
   496 																	TTransitionValidator& aValidator)
   497 		Intended Usage	: Standard c'tor method.
   498 		Error Condition	: None.
   499 		@since			7.0
   500 		@param			aUTContext The context this transition is operating in.
   501 		@param			aValidator Used for checking the pre & post conditions of the test object.
   502 		@pre 			None.
   503 		@post			CRegistrar_DriveReinstatedL_Transition is fully constructed.
   504 	*/
   505 	CRegistrar_DriveReinstatedL_Transition(CUnitTestContext& aUTContext,
   506 													TTransitionValidator& aValidator);
   507 	/**
   508 		@fn				TransitMethodL()
   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)
   512 		@since			7.0
   513 		@return			None
   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.
   518 	*/
   519 	inline void TransitMethodL();
   520 
   521 	/**
   522 		@fn				Context() const
   523 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   524 		Error Condition	: None.
   525 		@since			7.0
   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
   529 	*/
   530 	inline CRegistrar_UnitTestContext& Context() const;
   531 	};	// CRegistrar_DriveReinstatedL_Transition
   532 
   533 // ______________________________________________________________________________
   534 //
   535 /**
   536 	@internalComponent
   537 	Comments : Transition test of the CRegistrar::DriveRemoved method.
   538  */
   539 class CRegistrar_DriveRemoved_Transition : public CTransition
   540 	{
   541 public:
   542 	/**
   543 		@fn				CRegistrar_DriveRemoved_Transition(CUnitTestContext& aUTContext,
   544 																	TTransitionValidator& aValidator)
   545 		Intended Usage	: Standard c'tor method.
   546 		Error Condition	: None.
   547 		@since			7.0
   548 		@param			aUTContext The context this transition is operating in.
   549 		@param			aValidator Used for checking the pre & post conditions of the test object.
   550 		@pre 			None.
   551 		@post			CRegistrar_DriveRemoved_Transition is fully constructed.
   552 	*/
   553 	CRegistrar_DriveRemoved_Transition(CUnitTestContext& aUTContext,
   554 													TTransitionValidator& aValidator);
   555 	/**
   556 		@fn				TransitMethodL()
   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)
   560 		@since			7.0
   561 		@return			None
   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.
   566 	*/
   567 	inline void TransitMethodL();
   568 
   569 	/**
   570 		@fn				Context() const
   571 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   572 		Error Condition	: None.
   573 		@since			7.0
   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
   577 	*/
   578 	inline CRegistrar_UnitTestContext& Context() const;
   579 	};	// CRegistrar_DriveRemoved_Transition
   580 
   581 // ______________________________________________________________________________
   582 //
   583 /**
   584 	@internalComponent
   585 	Comments : Transition test of the CRegistrar::Enable method.
   586  */
   587 class CRegistrar_Enable_Transition : public CTransition
   588 	{
   589 public:
   590 	/**
   591 		@fn				CRegistrar_Enable_Transition(CUnitTestContext& aUTContext,
   592 																	TTransitionValidator& aValidator)
   593 		Intended Usage	: Standard c'tor method.
   594 		Error Condition	: None.
   595 		@since			7.0
   596 		@param			aUTContext The context this transition is operating in.
   597 		@param			aValidator Used for checking the pre & post conditions of the test object.
   598 		@pre 			None.
   599 		@post			CRegistrar_Enable_Transition is fully constructed.
   600 	*/
   601 	CRegistrar_Enable_Transition(CUnitTestContext& aUTContext,
   602 													TTransitionValidator& aValidator);
   603 	/**
   604 		@fn				TransitMethodL()
   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)
   608 		@since			7.0
   609 		@return			None
   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.
   614 	*/
   615 	inline void TransitMethodL();
   616 
   617 	/**
   618 		@fn				Context() const
   619 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   620 		Error Condition	: None.
   621 		@since			7.0
   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
   625 	*/
   626 	inline CRegistrar_UnitTestContext& Context() const;
   627 	};	// CRegistrar_Enable_Transition
   628 
   629 
   630 // ______________________________________________________________________________
   631 //
   632 /**
   633 	@internalComponent
   634 	Comments : Transition test of the CRegistrar::RegisterDiscoveryL method.
   635  */
   636 class CRegistrar_RegisterDiscoveryL_Transition : public CTransitionType
   637 	{
   638 public:
   639 	/**
   640 		@fn				CRegistrar_RegisterDiscoveryL_Transition(CUnitTestContext& aUTContext,
   641 																	TTransitionValidator& aValidator)
   642 		Intended Usage	: Standard c'tor method.
   643 		Error Condition	: None.
   644 		@since			7.0
   645 		@param			aUTContext The context this transition is operating in.
   646 		@param			aValidator Used for checking the pre & post conditions of the test object.
   647 		@pre 			None.
   648 		@post			CRegistrar_RegisterDiscoveryL_Transition is fully constructed.
   649 	*/
   650 	CRegistrar_RegisterDiscoveryL_Transition(CUnitTestContext& aUTContext,
   651 													TTransitionValidator& aValidator);
   652 	/**
   653 		@fn				TransitMethodL()
   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)
   657 		@since			7.0
   658 		@return			None
   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.
   663 	*/
   664 	inline void TransitMethodL();
   665 
   666 	/**
   667 		@fn				Context() const
   668 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   669 		Error Condition	: None.
   670 		@since			7.0
   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
   674 	*/
   675 	inline CRegistrar_UnitTestContext& Context() const;
   676 	};	// CRegistrar_RegisterDiscoveryL_Transition
   677 
   678 // ______________________________________________________________________________
   679 //
   680 /**
   681 	@internalComponent
   682 	Comments : Transition test of the CRegistrar::ParseRegistrationDataL method.
   683  */
   684 class CRegistrar_ParseRegistrationDataL_Transition : public CTransitionType
   685 	{
   686 public:
   687 	/**
   688 		@fn				CRegistrar_ParseRegistrationDataL_Transition(CUnitTestContext& aUTContext,
   689 																	TTransitionValidator& aValidator)
   690 		Intended Usage	: Standard c'tor method.
   691 		Error Condition	: None.
   692 		@since			7.0
   693 		@param			aUTContext The context this transition is operating in.
   694 		@param			aValidator Used for checking the pre & post conditions of the test object.
   695 		@pre 			None.
   696 		@post			CRegistrar_ParseRegistrationDataL_Transition is fully constructed.
   697 	*/
   698 	CRegistrar_ParseRegistrationDataL_Transition(CUnitTestContext& aUTContext,
   699 													TTransitionValidator& aValidator);
   700 	/**
   701 		@fn				TransitMethodL()
   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)
   705 		@since			7.0
   706 		@return			None
   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.
   711 	*/
   712 	inline void TransitMethodL();
   713 
   714 	/**
   715 		@fn				Context() const
   716 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   717 		Error Condition	: None.
   718 		@since			7.0
   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
   722 	*/
   723 	inline CRegistrar_UnitTestContext& Context() const;
   724 	};	// CRegistrar_ParseRegistrationDataL_Transition
   725 
   726 
   727 #include "RegistrarTransitions.inl"
   728 
   729 #endif		// __REGISTRARTRANSITIONS_H__