sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The validation classes for the CDiscoverer transitions. sl@0: // sl@0: // sl@0: sl@0: #ifndef __DISCOVERERTRANSITIONVALIDATION_H__ sl@0: #define __DISCOVERERTRANSITIONVALIDATION_H__ sl@0: sl@0: #include "DiscovererTransitions.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the CreateAndDestroy Unit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: sl@0: */ sl@0: class TDiscoverer_Ctor_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : Standard constructor. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_Ctor_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Default_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Default_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_Ctor_TransitionValidator sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the CreateAndDestroy Unit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: sl@0: */ sl@0: class TDiscoverer_Dtor_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_Dtor_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Default_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Default_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_Dtor_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: Comments : Provide all the MountDriveLUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: sl@0: */ sl@0: class TDiscoverer_MountDriveL_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_MountDriveL_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_MountDriveL_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_MountDriveL_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_MountDriveL_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the UnmountDriveUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_UnmountDrive_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_UnmountDrive_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_UnmountDrive_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_UnmountDrive_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_UnmountDrive_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the IsValidEntryUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_IsValidEntry_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_IsValidEntry_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_IsValidEntry_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_IsValidEntry_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_IsValidEntry_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the ProcessEntryLUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_ProcessEntryL_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_ProcessEntryL_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ProcessEntryL_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_ProcessEntryL_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the CompleteNotificationProcessingUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_CompleteNotificationProcessing_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_CompleteNotificationProcessing_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_CompleteNotificationProcessing_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_CompleteNotificationProcessing_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the NotificationUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_Notification_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_Notification_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Notification_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Notification_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_Notification_TransitionValidator sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the SuspendUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_Suspend_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_Suspend_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Suspend_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Suspend_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_Suspend_TransitionValidator sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the ResumeUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_Resume_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_Resume_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Resume_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_Resume_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_Resume_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the ScanDirectoryUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_ScanDirectory_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_ScanDirectory_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectory_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectory_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_ScanDirectory_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the ScanDirectoryCancelUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_ScanDirectoryCancel_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_ScanDirectoryCancel_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectoryCancel_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_ScanDirectoryCancel_TransitionValidator sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Provide all the ScanDirectoryIncrementUnit Test's specific sl@0: validatation for the state of a transition before and after its execution. sl@0: on the CDiscoverer test class for a transition. sl@0: */ sl@0: class TDiscoverer_ScanDirectoryIncrement_TransitionValidator : public TTransitionValidator sl@0: { sl@0: public: sl@0: /** sl@0: @fn TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext) sl@0: Intended Usage : sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aUTContext The context within which this transition is executing sl@0: */ sl@0: inline TDiscoverer_ScanDirectoryIncrement_TransitionValidator(CUnitTestContext& aUTContext); sl@0: sl@0: /** sl@0: @fn ValidatePreConditions() sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: Error Condition : Invalid pre-conditions sl@0: @since 7.0 sl@0: @return TBool ETrue if the pre-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePreConditions(); sl@0: sl@0: /** sl@0: @fn ValidatePostConditions(TTestBedAsyncState aAsyncState) sl@0: Intended Usage : Implemented by the developer to check the sl@0: end state of the transition behaviour. sl@0: When overriding, if the transition calls an asynchronous function sl@0: ValidatePostConditions will be called twice. Firstly, after the sl@0: asynchronous function has been called and, secondly, after the sl@0: asynchronous request has completed. The parameter aAsyncState can sl@0: be used to distinguish between these two cases. sl@0: Error Condition : Invalid post-conditions. sl@0: @since 7.0 sl@0: @param aAsyncState EAsyncCalled if the async function has been just been called, sl@0: EAsyncCompleted if the function has completed. sl@0: @return TBool ETrue if the post-conditions were valid, EFalse otherwise. sl@0: @pre TDiscoverer_ScanDirectoryIncrement_TransitionValidator is fully constructed. sl@0: @post No change to the iUTContext class. sl@0: */ sl@0: virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState); sl@0: }; // TDiscoverer_ScanDirectoryIncrement_TransitionValidator sl@0: sl@0: #include "DiscovererTransitionValidation.inl" sl@0: sl@0: #endif // __DISCOVERERTRANSITIONVALIDATION_H__ sl@0: