os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTransitionValidation.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTransitionValidation.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,132 @@
     1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The definitions of the transition classes upon the CBackupNotifier class methods.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __BACKUPNOTIFIERTRANSITIONVALIDATION_H__
    1.22 +#define __BACKUPNOTIFIERTRANSITIONVALIDATION_H__
    1.23 +
    1.24 +#include "BackupNotifierTransitions.h"
    1.25 +
    1.26 +// ______________________________________________________________________________
    1.27 +//
    1.28 +/**
    1.29 +	@internalComponent
    1.30 +
    1.31 +	Comments : Provide all the CtorUnit Test's specific
    1.32 +	validatation for the state of a transition before and after its execution.
    1.33 +	on the CBackupNotifier test class for a transition.
    1.34 + */
    1.35 +class TBackupNotifier_Ctor_TransitionValidator : public TTransitionValidator
    1.36 +	{
    1.37 +public:
    1.38 +	/**
    1.39 +		@fn				TBackupNotifier_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    1.40 +		Intended Usage	:	
    1.41 +		@leave			KErrNoMemory
    1.42 +		@since			7.0
    1.43 +		@param			aUTContext The context within which this transition is executing
    1.44 +	 */
    1.45 +	inline TBackupNotifier_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
    1.46 +
    1.47 +	/**
    1.48 +		@fn				ValidatePreConditions()
    1.49 +		Intended Usage	: Implemented by the developer to check the
    1.50 +						end state of the transition behaviour.
    1.51 +		Error Condition	: Invalid pre-conditions
    1.52 +		@since			7.0
    1.53 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
    1.54 +		@pre 			TBackupNotifier_Ctor_TransitionValidator is fully constructed.
    1.55 +		@post			No change to the iUTContext class.
    1.56 +	*/
    1.57 +	virtual inline TBool ValidatePreConditions();
    1.58 +
    1.59 +	/**
    1.60 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
    1.61 +		Intended Usage	:	Implemented by the developer to check the
    1.62 +						end state of the transition behaviour.
    1.63 +						When overriding, if the transition calls an asynchronous function
    1.64 +						ValidatePostConditions will be called twice. Firstly, after the
    1.65 +						asynchronous function has been called and, secondly, after the 
    1.66 +						asynchronous request has completed. The parameter aAsyncState can
    1.67 +						be used to distinguish between these two cases.
    1.68 +		Error Condition	: Invalid post-conditions.
    1.69 +		@since			7.0
    1.70 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
    1.71 +						EAsyncCompleted if the function has completed.
    1.72 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
    1.73 +		@pre 			TBackupNotifier_Ctor_TransitionValidator is fully constructed.
    1.74 +		@post			No change to the iUTContext class.
    1.75 +	*/
    1.76 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
    1.77 +	};	// TBackupNotifier_Ctor_TransitionValidator
    1.78 +
    1.79 +// ______________________________________________________________________________
    1.80 +//
    1.81 +/**
    1.82 +	@internalComponent
    1.83 +
    1.84 +	Comments : Provide all the DtorUnit Test's specific
    1.85 +	validatation for the state of a transition before and after its execution.
    1.86 +	on the CBackupNotifier test class for a transition.
    1.87 + */
    1.88 +class TBackupNotifier_Dtor_TransitionValidator : public TTransitionValidator
    1.89 +	{
    1.90 +public:
    1.91 +	/**
    1.92 +		@fn				TBackupNotifier_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    1.93 +		Intended Usage	:	
    1.94 +		@leave			KErrNoMemory
    1.95 +		@since			7.0
    1.96 +		@param			aUTContext The context within which this transition is executing
    1.97 +	 */
    1.98 +	inline TBackupNotifier_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
    1.99 +
   1.100 +	/**
   1.101 +		@fn				ValidatePreConditions()
   1.102 +		Intended Usage	: Implemented by the developer to check the
   1.103 +						end state of the transition behaviour.
   1.104 +		Error Condition	: Invalid pre-conditions
   1.105 +		@since			7.0
   1.106 +		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
   1.107 +		@pre 			TBackupNotifier_Dtor_TransitionValidator is fully constructed.
   1.108 +		@post			No change to the iUTContext class.
   1.109 +	*/
   1.110 +	virtual inline TBool ValidatePreConditions();
   1.111 +
   1.112 +	/**
   1.113 +		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
   1.114 +		Intended Usage	:	Implemented by the developer to check the
   1.115 +						end state of the transition behaviour.
   1.116 +						When overriding, if the transition calls an asynchronous function
   1.117 +						ValidatePostConditions will be called twice. Firstly, after the
   1.118 +						asynchronous function has been called and, secondly, after the 
   1.119 +						asynchronous request has completed. The parameter aAsyncState can
   1.120 +						be used to distinguish between these two cases.
   1.121 +		Error Condition	: Invalid post-conditions.
   1.122 +		@since			7.0
   1.123 +		@param			aAsyncState EAsyncCalled if the async function has been just been called,
   1.124 +						EAsyncCompleted if the function has completed.
   1.125 +		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
   1.126 +		@pre 			TBackupNotifier_Dtor_TransitionValidator is fully constructed.
   1.127 +		@post			No change to the iUTContext class.
   1.128 +	*/
   1.129 +	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
   1.130 +	};	// TBackupNotifier_Dtor_TransitionValidator
   1.131 +
   1.132 +#include "BackupNotifierTransitionValidation.inl"
   1.133 +
   1.134 +#endif // __BACKUPNOTIFIERTRANSITIONVALIDATION_H__
   1.135 +