os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitionValidation.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 validation classes for the CDiscoverer transitions.
    15 // 
    16 //
    17 
    18 #ifndef __DISCOVERERTRANSITIONVALIDATION_H__
    19 #define __DISCOVERERTRANSITIONVALIDATION_H__
    20 
    21 #include "DiscovererTransitions.h"
    22 
    23 // ______________________________________________________________________________
    24 //
    25 /**
    26 	@internalComponent
    27 
    28 	Comments : Provide all the CreateAndDestroy Unit Test's specific
    29 	validatation for the state of a transition before and after its execution.
    30 	on the CDiscoverer test class for a transition.
    31 
    32  */
    33 class TDiscoverer_Ctor_TransitionValidator : public TTransitionValidator
    34 	{
    35 public:
    36 	/**
    37 		@fn				TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    38 		Intended Usage	: Standard constructor.
    39 		@leave			KErrNoMemory
    40 		@since			7.0
    41 		@param			aUTContext The context within which this transition is executing
    42 	 */
    43 	inline TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    44 
    45 	/**
    46 		@fn				ValidatePreConditions()
    47 		Intended Usage	: Implemented by the developer to check the
    48 						end state of the transition behaviour.
    49 		Error Condition	: Invalid pre-conditions
    50 		@since			7.0
    51 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    52 		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
    53 		@post			No change to the iUTContext class.
    54 	*/
    55 	virtual inline TBool ValidatePreConditions();
    56 
    57 	/**
    58 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    59 		Intended Usage	:	Implemented by the developer to check the
    60 						end state of the transition behaviour.
    61 						When overriding, if the transition calls an asynchronous function
    62 						ValidatePostConditions will be called twice. Firstly, after the
    63 						asynchronous function has been called and, secondly, after the 
    64 						asynchronous request has completed. The parameter aAsyncState can
    65 						be used to distinguish between these two cases.
    66 		Error Condition	: Invalid post-conditions.
    67 		@since			7.0
    68 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    69 						EAsyncCompleted if the function has completed.
    70 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    71 		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
    72 		@post			No change to the iUTContext class.
    73 	*/
    74 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    75 	};	// TDiscoverer_Ctor_TransitionValidator
    76 
    77 
    78 // ______________________________________________________________________________
    79 //
    80 /**
    81 	@internalComponent
    82 
    83 	Comments : Provide all the CreateAndDestroy Unit Test's specific
    84 	validatation for the state of a transition before and after its execution.
    85 	on the CDiscoverer test class for a transition.
    86 
    87  */
    88 class TDiscoverer_Dtor_TransitionValidator : public TTransitionValidator
    89 	{
    90 public:
    91 	/**
    92 		@fn				TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    93 		Intended Usage	:	
    94 		@leave			KErrNoMemory
    95 		@since			7.0
    96 		@param			aUTContext The context within which this transition is executing
    97 	 */
    98 	inline TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    99 
   100 	/**
   101 		@fn				ValidatePreConditions()
   102 		Intended Usage	: Implemented by the developer to check the
   103 						end state of the transition behaviour.
   104 		Error Condition	: Invalid pre-conditions
   105 		@since			7.0
   106 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   107 		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
   108 		@post			No change to the iUTContext class.
   109 	*/
   110 	virtual inline TBool ValidatePreConditions();
   111 
   112 	/**
   113 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   114 		Intended Usage	:	Implemented by the developer to check the
   115 						end state of the transition behaviour.
   116 						When overriding, if the transition calls an asynchronous function
   117 						ValidatePostConditions will be called twice. Firstly, after the
   118 						asynchronous function has been called and, secondly, after the 
   119 						asynchronous request has completed. The parameter aAsyncState can
   120 						be used to distinguish between these two cases.
   121 		Error Condition	: Invalid post-conditions.
   122 		@since			7.0
   123 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   124 						EAsyncCompleted if the function has completed.
   125 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   126 		@pre 			TDiscoverer_Default_TransitionValidator is fully constructed.
   127 		@post			No change to the iUTContext class.
   128 	*/
   129 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   130 	};	// TDiscoverer_Dtor_TransitionValidator
   131 
   132 // ______________________________________________________________________________
   133 //
   134 /**
   135 	@internalComponent
   136 	Comments : Provide all the MountDriveLUnit Test's specific
   137 	validatation for the state of a transition before and after its execution.
   138 	on the CDiscoverer test class for a transition.
   139 
   140  */
   141 class TDiscoverer_MountDriveL_TransitionValidator : public TTransitionValidator
   142 	{
   143 public:
   144 	/**
   145 		@fn				TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext)
   146 		Intended Usage	:	
   147 		@leave			KErrNoMemory
   148 		@since			7.0
   149 		@param			aUTContext The context within which this transition is executing
   150 	 */
   151 	inline TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext);
   152 
   153 	/**
   154 		@fn				ValidatePreConditions()
   155 		Intended Usage	: Implemented by the developer to check the
   156 						end state of the transition behaviour.
   157 		Error Condition	: Invalid pre-conditions
   158 		@since			7.0
   159 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   160 		@pre 			TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
   161 		@post			No change to the iUTContext class.
   162 	*/
   163 	virtual inline TBool ValidatePreConditions();
   164 
   165 	/**
   166 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   167 		Intended Usage	:	Implemented by the developer to check the
   168 						end state of the transition behaviour.
   169 						When overriding, if the transition calls an asynchronous function
   170 						ValidatePostConditions will be called twice. Firstly, after the
   171 						asynchronous function has been called and, secondly, after the 
   172 						asynchronous request has completed. The parameter aAsyncState can
   173 						be used to distinguish between these two cases.
   174 		Error Condition	: Invalid post-conditions.
   175 		@since			7.0
   176 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   177 						EAsyncCompleted if the function has completed.
   178 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   179 		@pre 			TDiscoverer_MountDriveL_TransitionValidator is fully constructed.
   180 		@post			No change to the iUTContext class.
   181 	*/
   182 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   183 	};	// TDiscoverer_MountDriveL_TransitionValidator
   184 
   185 // ______________________________________________________________________________
   186 //
   187 /**
   188 	@internalComponent
   189 
   190 	Comments : Provide all the UnmountDriveUnit Test's specific
   191 	validatation for the state of a transition before and after its execution.
   192 	on the CDiscoverer test class for a transition.
   193  */
   194 class TDiscoverer_UnmountDrive_TransitionValidator : public TTransitionValidator
   195 	{
   196 public:
   197 	/**
   198 		@fn				TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext)
   199 		Intended Usage	:	
   200 		@leave			KErrNoMemory
   201 		@since			7.0
   202 		@param			aUTContext The context within which this transition is executing
   203 	 */
   204 	inline TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext);
   205 
   206 	/**
   207 		@fn				ValidatePreConditions()
   208 		Intended Usage	: Implemented by the developer to check the
   209 						end state of the transition behaviour.
   210 		Error Condition	: Invalid pre-conditions
   211 		@since			7.0
   212 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   213 		@pre 			TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
   214 		@post			No change to the iUTContext class.
   215 	*/
   216 	virtual inline TBool ValidatePreConditions();
   217 
   218 	/**
   219 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   220 		Intended Usage	:	Implemented by the developer to check the
   221 						end state of the transition behaviour.
   222 						When overriding, if the transition calls an asynchronous function
   223 						ValidatePostConditions will be called twice. Firstly, after the
   224 						asynchronous function has been called and, secondly, after the 
   225 						asynchronous request has completed. The parameter aAsyncState can
   226 						be used to distinguish between these two cases.
   227 		Error Condition	: Invalid post-conditions.
   228 		@since			7.0
   229 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   230 						EAsyncCompleted if the function has completed.
   231 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   232 		@pre 			TDiscoverer_UnmountDrive_TransitionValidator is fully constructed.
   233 		@post			No change to the iUTContext class.
   234 	*/
   235 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   236 	};	// TDiscoverer_UnmountDrive_TransitionValidator
   237 
   238 // ______________________________________________________________________________
   239 //
   240 /**
   241 	@internalComponent
   242 
   243 	Comments : Provide all the IsValidEntryUnit Test's specific
   244 	validatation for the state of a transition before and after its execution.
   245 	on the CDiscoverer test class for a transition.
   246  */
   247 class TDiscoverer_IsValidEntry_TransitionValidator : public TTransitionValidator
   248 	{
   249 public:
   250 	/**
   251 		@fn				TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext)
   252 		Intended Usage	:	
   253 		@leave			KErrNoMemory
   254 		@since			7.0
   255 		@param			aUTContext The context within which this transition is executing
   256 	 */
   257 	inline TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext);
   258 
   259 	/**
   260 		@fn				ValidatePreConditions()
   261 		Intended Usage	: Implemented by the developer to check the
   262 						end state of the transition behaviour.
   263 		Error Condition	: Invalid pre-conditions
   264 		@since			7.0
   265 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   266 		@pre 			TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
   267 		@post			No change to the iUTContext class.
   268 	*/
   269 	virtual inline TBool ValidatePreConditions();
   270 
   271 	/**
   272 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   273 		Intended Usage	:	Implemented by the developer to check the
   274 						end state of the transition behaviour.
   275 						When overriding, if the transition calls an asynchronous function
   276 						ValidatePostConditions will be called twice. Firstly, after the
   277 						asynchronous function has been called and, secondly, after the 
   278 						asynchronous request has completed. The parameter aAsyncState can
   279 						be used to distinguish between these two cases.
   280 		Error Condition	: Invalid post-conditions.
   281 		@since			7.0
   282 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   283 						EAsyncCompleted if the function has completed.
   284 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   285 		@pre 			TDiscoverer_IsValidEntry_TransitionValidator is fully constructed.
   286 		@post			No change to the iUTContext class.
   287 	*/
   288 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   289 	};	// TDiscoverer_IsValidEntry_TransitionValidator
   290 
   291 // ______________________________________________________________________________
   292 //
   293 /**
   294 	@internalComponent
   295 
   296 	Comments : Provide all the ProcessEntryLUnit Test's specific
   297 	validatation for the state of a transition before and after its execution.
   298 	on the CDiscoverer test class for a transition.
   299  */
   300 class TDiscoverer_ProcessEntryL_TransitionValidator : public TTransitionValidator
   301 	{
   302 public:
   303 	/**
   304 		@fn				TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext)
   305 		Intended Usage	:	
   306 		@leave			KErrNoMemory
   307 		@since			7.0
   308 		@param			aUTContext The context within which this transition is executing
   309 	 */
   310 	inline TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext);
   311 
   312 	/**
   313 		@fn				ValidatePreConditions()
   314 		Intended Usage	: Implemented by the developer to check the
   315 						end state of the transition behaviour.
   316 		Error Condition	: Invalid pre-conditions
   317 		@since			7.0
   318 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   319 		@pre 			TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
   320 		@post			No change to the iUTContext class.
   321 	*/
   322 	virtual inline TBool ValidatePreConditions();
   323 
   324 	/**
   325 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   326 		Intended Usage	:	Implemented by the developer to check the
   327 						end state of the transition behaviour.
   328 						When overriding, if the transition calls an asynchronous function
   329 						ValidatePostConditions will be called twice. Firstly, after the
   330 						asynchronous function has been called and, secondly, after the 
   331 						asynchronous request has completed. The parameter aAsyncState can
   332 						be used to distinguish between these two cases.
   333 		Error Condition	: Invalid post-conditions.
   334 		@since			7.0
   335 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   336 						EAsyncCompleted if the function has completed.
   337 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   338 		@pre 			TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed.
   339 		@post			No change to the iUTContext class.
   340 	*/
   341 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   342 	};	// TDiscoverer_ProcessEntryL_TransitionValidator
   343 
   344 // ______________________________________________________________________________
   345 //
   346 /**
   347 	@internalComponent
   348 
   349 	Comments : Provide all the CompleteNotificationProcessingUnit Test's specific
   350 	validatation for the state of a transition before and after its execution.
   351 	on the CDiscoverer test class for a transition.
   352  */
   353 class TDiscoverer_CompleteNotificationProcessing_TransitionValidator : public TTransitionValidator
   354 	{
   355 public:
   356 	/**
   357 		@fn				TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext)
   358 		Intended Usage	:	
   359 		@leave			KErrNoMemory
   360 		@since			7.0
   361 		@param			aUTContext The context within which this transition is executing
   362 	 */
   363 	inline TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext);
   364 
   365 	/**
   366 		@fn				ValidatePreConditions()
   367 		Intended Usage	: Implemented by the developer to check the
   368 						end state of the transition behaviour.
   369 		Error Condition	: Invalid pre-conditions
   370 		@since			7.0
   371 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   372 		@pre 			TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
   373 		@post			No change to the iUTContext class.
   374 	*/
   375 	virtual inline TBool ValidatePreConditions();
   376 
   377 	/**
   378 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   379 		Intended Usage	:	Implemented by the developer to check the
   380 						end state of the transition behaviour.
   381 						When overriding, if the transition calls an asynchronous function
   382 						ValidatePostConditions will be called twice. Firstly, after the
   383 						asynchronous function has been called and, secondly, after the 
   384 						asynchronous request has completed. The parameter aAsyncState can
   385 						be used to distinguish between these two cases.
   386 		Error Condition	: Invalid post-conditions.
   387 		@since			7.0
   388 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   389 						EAsyncCompleted if the function has completed.
   390 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   391 		@pre 			TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed.
   392 		@post			No change to the iUTContext class.
   393 	*/
   394 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   395 	};	// TDiscoverer_CompleteNotificationProcessing_TransitionValidator
   396 
   397 // ______________________________________________________________________________
   398 //
   399 /**
   400 	@internalComponent
   401 
   402 	Comments : Provide all the NotificationUnit Test's specific
   403 	validatation for the state of a transition before and after its execution.
   404 	on the CDiscoverer test class for a transition.
   405  */
   406 class TDiscoverer_Notification_TransitionValidator : public TTransitionValidator
   407 	{
   408 public:
   409 	/**
   410 		@fn				TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext)
   411 		Intended Usage	:	
   412 		@leave			KErrNoMemory
   413 		@since			7.0
   414 		@param			aUTContext The context within which this transition is executing
   415 	 */
   416 	inline TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext);
   417 
   418 	/**
   419 		@fn				ValidatePreConditions()
   420 		Intended Usage	: Implemented by the developer to check the
   421 						end state of the transition behaviour.
   422 		Error Condition	: Invalid pre-conditions
   423 		@since			7.0
   424 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   425 		@pre 			TDiscoverer_Notification_TransitionValidator is fully constructed.
   426 		@post			No change to the iUTContext class.
   427 	*/
   428 	virtual inline TBool ValidatePreConditions();
   429 
   430 	/**
   431 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   432 		Intended Usage	:	Implemented by the developer to check the
   433 						end state of the transition behaviour.
   434 						When overriding, if the transition calls an asynchronous function
   435 						ValidatePostConditions will be called twice. Firstly, after the
   436 						asynchronous function has been called and, secondly, after the 
   437 						asynchronous request has completed. The parameter aAsyncState can
   438 						be used to distinguish between these two cases.
   439 		Error Condition	: Invalid post-conditions.
   440 		@since			7.0
   441 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   442 						EAsyncCompleted if the function has completed.
   443 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   444 		@pre 			TDiscoverer_Notification_TransitionValidator is fully constructed.
   445 		@post			No change to the iUTContext class.
   446 	*/
   447 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   448 	};	// TDiscoverer_Notification_TransitionValidator
   449 // ______________________________________________________________________________
   450 //
   451 /**
   452 	@internalComponent
   453 
   454 	Comments : Provide all the SuspendUnit Test's specific
   455 	validatation for the state of a transition before and after its execution.
   456 	on the CDiscoverer test class for a transition.
   457  */
   458 class TDiscoverer_Suspend_TransitionValidator : public TTransitionValidator
   459 	{
   460 public:
   461 	/**
   462 		@fn				TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext)
   463 		Intended Usage	:	
   464 		@leave			KErrNoMemory
   465 		@since			7.0
   466 		@param			aUTContext The context within which this transition is executing
   467 	 */
   468 	inline TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext);
   469 
   470 	/**
   471 		@fn				ValidatePreConditions()
   472 		Intended Usage	: Implemented by the developer to check the
   473 						end state of the transition behaviour.
   474 		Error Condition	: Invalid pre-conditions
   475 		@since			7.0
   476 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   477 		@pre 			TDiscoverer_Suspend_TransitionValidator is fully constructed.
   478 		@post			No change to the iUTContext class.
   479 	*/
   480 	virtual inline TBool ValidatePreConditions();
   481 
   482 	/**
   483 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   484 		Intended Usage	:	Implemented by the developer to check the
   485 						end state of the transition behaviour.
   486 						When overriding, if the transition calls an asynchronous function
   487 						ValidatePostConditions will be called twice. Firstly, after the
   488 						asynchronous function has been called and, secondly, after the 
   489 						asynchronous request has completed. The parameter aAsyncState can
   490 						be used to distinguish between these two cases.
   491 		Error Condition	: Invalid post-conditions.
   492 		@since			7.0
   493 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   494 						EAsyncCompleted if the function has completed.
   495 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   496 		@pre 			TDiscoverer_Suspend_TransitionValidator is fully constructed.
   497 		@post			No change to the iUTContext class.
   498 	*/
   499 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   500 	};	// TDiscoverer_Suspend_TransitionValidator
   501 
   502 
   503 // ______________________________________________________________________________
   504 //
   505 /**
   506 	@internalComponent
   507 
   508 	Comments : Provide all the ResumeUnit Test's specific
   509 	validatation for the state of a transition before and after its execution.
   510 	on the CDiscoverer test class for a transition.
   511  */
   512 class TDiscoverer_Resume_TransitionValidator : public TTransitionValidator
   513 	{
   514 public:
   515 	/**
   516 		@fn				TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext)
   517 		Intended Usage	:	
   518 		@leave			KErrNoMemory
   519 		@since			7.0
   520 		@param			aUTContext The context within which this transition is executing
   521 	 */
   522 	inline TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext);
   523 
   524 	/**
   525 		@fn				ValidatePreConditions()
   526 		Intended Usage	: Implemented by the developer to check the
   527 						end state of the transition behaviour.
   528 		Error Condition	: Invalid pre-conditions
   529 		@since			7.0
   530 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   531 		@pre 			TDiscoverer_Resume_TransitionValidator is fully constructed.
   532 		@post			No change to the iUTContext class.
   533 	*/
   534 	virtual inline TBool ValidatePreConditions();
   535 
   536 	/**
   537 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   538 		Intended Usage	:	Implemented by the developer to check the
   539 						end state of the transition behaviour.
   540 						When overriding, if the transition calls an asynchronous function
   541 						ValidatePostConditions will be called twice. Firstly, after the
   542 						asynchronous function has been called and, secondly, after the 
   543 						asynchronous request has completed. The parameter aAsyncState can
   544 						be used to distinguish between these two cases.
   545 		Error Condition	: Invalid post-conditions.
   546 		@since			7.0
   547 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   548 						EAsyncCompleted if the function has completed.
   549 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   550 		@pre 			TDiscoverer_Resume_TransitionValidator is fully constructed.
   551 		@post			No change to the iUTContext class.
   552 	*/
   553 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   554 	};	// TDiscoverer_Resume_TransitionValidator
   555 
   556 // ______________________________________________________________________________
   557 //
   558 /**
   559 	@internalComponent
   560 
   561 	Comments : Provide all the ScanDirectoryUnit Test's specific
   562 	validatation for the state of a transition before and after its execution.
   563 	on the CDiscoverer test class for a transition.
   564  */
   565 class TDiscoverer_ScanDirectory_TransitionValidator : public TTransitionValidator
   566 	{
   567 public:
   568 	/**
   569 		@fn				TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext)
   570 		Intended Usage	:	
   571 		@leave			KErrNoMemory
   572 		@since			7.0
   573 		@param			aUTContext The context within which this transition is executing
   574 	 */
   575 	inline TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext);
   576 
   577 	/**
   578 		@fn				ValidatePreConditions()
   579 		Intended Usage	: Implemented by the developer to check the
   580 						end state of the transition behaviour.
   581 		Error Condition	: Invalid pre-conditions
   582 		@since			7.0
   583 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   584 		@pre 			TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
   585 		@post			No change to the iUTContext class.
   586 	*/
   587 	virtual inline TBool ValidatePreConditions();
   588 
   589 	/**
   590 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   591 		Intended Usage	:	Implemented by the developer to check the
   592 						end state of the transition behaviour.
   593 						When overriding, if the transition calls an asynchronous function
   594 						ValidatePostConditions will be called twice. Firstly, after the
   595 						asynchronous function has been called and, secondly, after the 
   596 						asynchronous request has completed. The parameter aAsyncState can
   597 						be used to distinguish between these two cases.
   598 		Error Condition	: Invalid post-conditions.
   599 		@since			7.0
   600 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   601 						EAsyncCompleted if the function has completed.
   602 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   603 		@pre 			TDiscoverer_ScanDirectory_TransitionValidator is fully constructed.
   604 		@post			No change to the iUTContext class.
   605 	*/
   606 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   607 	};	// TDiscoverer_ScanDirectory_TransitionValidator
   608 
   609 // ______________________________________________________________________________
   610 //
   611 /**
   612 	@internalComponent
   613 
   614 	Comments : Provide all the ScanDirectoryCancelUnit Test's specific
   615 	validatation for the state of a transition before and after its execution.
   616 	on the CDiscoverer test class for a transition.
   617  */
   618 class TDiscoverer_ScanDirectoryCancel_TransitionValidator : public TTransitionValidator
   619 	{
   620 public:
   621 	/**
   622 		@fn				TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext)
   623 		Intended Usage	:	
   624 		@leave			KErrNoMemory
   625 		@since			7.0
   626 		@param			aUTContext The context within which this transition is executing
   627 	 */
   628 	inline TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext);
   629 
   630 	/**
   631 		@fn				ValidatePreConditions()
   632 		Intended Usage	: Implemented by the developer to check the
   633 						end state of the transition behaviour.
   634 		Error Condition	: Invalid pre-conditions
   635 		@since			7.0
   636 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   637 		@pre 			TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
   638 		@post			No change to the iUTContext class.
   639 	*/
   640 	virtual inline TBool ValidatePreConditions();
   641 
   642 	/**
   643 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   644 		Intended Usage	:	Implemented by the developer to check the
   645 						end state of the transition behaviour.
   646 						When overriding, if the transition calls an asynchronous function
   647 						ValidatePostConditions will be called twice. Firstly, after the
   648 						asynchronous function has been called and, secondly, after the 
   649 						asynchronous request has completed. The parameter aAsyncState can
   650 						be used to distinguish between these two cases.
   651 		Error Condition	: Invalid post-conditions.
   652 		@since			7.0
   653 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   654 						EAsyncCompleted if the function has completed.
   655 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   656 		@pre 			TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed.
   657 		@post			No change to the iUTContext class.
   658 	*/
   659 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   660 	};	// TDiscoverer_ScanDirectoryCancel_TransitionValidator
   661 
   662 // ______________________________________________________________________________
   663 //
   664 /**
   665 	@internalComponent
   666 	
   667 	Comments : Provide all the ScanDirectoryIncrementUnit Test's specific
   668 	validatation for the state of a transition before and after its execution.
   669 	on the CDiscoverer test class for a transition.
   670  */
   671 class TDiscoverer_ScanDirectoryIncrement_TransitionValidator : public TTransitionValidator
   672 	{
   673 public:
   674 	/**
   675 		@fn				TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext)
   676 		Intended Usage	:	
   677 		@leave			KErrNoMemory
   678 		@since			7.0
   679 		@param			aUTContext The context within which this transition is executing
   680 	 */
   681 	inline TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext);
   682 
   683 	/**
   684 		@fn				ValidatePreConditions()
   685 		Intended Usage	: Implemented by the developer to check the
   686 						end state of the transition behaviour.
   687 		Error Condition	: Invalid pre-conditions
   688 		@since			7.0
   689 		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   690 		@pre 			TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
   691 		@post			No change to the iUTContext class.
   692 	*/
   693 	virtual inline TBool ValidatePreConditions();
   694 
   695 	/**
   696 		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   697 		Intended Usage	:	Implemented by the developer to check the
   698 						end state of the transition behaviour.
   699 						When overriding, if the transition calls an asynchronous function
   700 						ValidatePostConditions will be called twice. Firstly, after the
   701 						asynchronous function has been called and, secondly, after the 
   702 						asynchronous request has completed. The parameter aAsyncState can
   703 						be used to distinguish between these two cases.
   704 		Error Condition	: Invalid post-conditions.
   705 		@since			7.0
   706 		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   707 						EAsyncCompleted if the function has completed.
   708 		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   709 		@pre 			TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed.
   710 		@post			No change to the iUTContext class.
   711 	*/
   712 	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   713 	};	// TDiscoverer_ScanDirectoryIncrement_TransitionValidator
   714 
   715 #include "DiscovererTransitionValidation.inl"
   716 
   717 #endif		// __DISCOVERERTRANSITIONVALIDATION_H__
   718