os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTransitionValidation.h
First public contribution.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definitions of the transition classes upon the CBackupNotifier class methods.
18 #ifndef __BACKUPNOTIFIERTRANSITIONVALIDATION_H__
19 #define __BACKUPNOTIFIERTRANSITIONVALIDATION_H__
21 #include "BackupNotifierTransitions.h"
23 // ______________________________________________________________________________
28 Comments : Provide all the CtorUnit Test's specific
29 validatation for the state of a transition before and after its execution.
30 on the CBackupNotifier test class for a transition.
32 class TBackupNotifier_Ctor_TransitionValidator : public TTransitionValidator
36 @fn TBackupNotifier_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
40 @param aUTContext The context within which this transition is executing
42 inline TBackupNotifier_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
45 @fn ValidatePreConditions()
46 Intended Usage : Implemented by the developer to check the
47 end state of the transition behaviour.
48 Error Condition : Invalid pre-conditions
50 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
51 @pre TBackupNotifier_Ctor_TransitionValidator is fully constructed.
52 @post No change to the iUTContext class.
54 virtual inline TBool ValidatePreConditions();
57 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
58 Intended Usage : Implemented by the developer to check the
59 end state of the transition behaviour.
60 When overriding, if the transition calls an asynchronous function
61 ValidatePostConditions will be called twice. Firstly, after the
62 asynchronous function has been called and, secondly, after the
63 asynchronous request has completed. The parameter aAsyncState can
64 be used to distinguish between these two cases.
65 Error Condition : Invalid post-conditions.
67 @param aAsyncState EAsyncCalled if the async function has been just been called,
68 EAsyncCompleted if the function has completed.
69 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
70 @pre TBackupNotifier_Ctor_TransitionValidator is fully constructed.
71 @post No change to the iUTContext class.
73 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
74 }; // TBackupNotifier_Ctor_TransitionValidator
76 // ______________________________________________________________________________
81 Comments : Provide all the DtorUnit Test's specific
82 validatation for the state of a transition before and after its execution.
83 on the CBackupNotifier test class for a transition.
85 class TBackupNotifier_Dtor_TransitionValidator : public TTransitionValidator
89 @fn TBackupNotifier_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
93 @param aUTContext The context within which this transition is executing
95 inline TBackupNotifier_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
98 @fn ValidatePreConditions()
99 Intended Usage : Implemented by the developer to check the
100 end state of the transition behaviour.
101 Error Condition : Invalid pre-conditions
103 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
104 @pre TBackupNotifier_Dtor_TransitionValidator is fully constructed.
105 @post No change to the iUTContext class.
107 virtual inline TBool ValidatePreConditions();
110 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
111 Intended Usage : Implemented by the developer to check the
112 end state of the transition behaviour.
113 When overriding, if the transition calls an asynchronous function
114 ValidatePostConditions will be called twice. Firstly, after the
115 asynchronous function has been called and, secondly, after the
116 asynchronous request has completed. The parameter aAsyncState can
117 be used to distinguish between these two cases.
118 Error Condition : Invalid post-conditions.
120 @param aAsyncState EAsyncCalled if the async function has been just been called,
121 EAsyncCompleted if the function has completed.
122 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
123 @pre TBackupNotifier_Dtor_TransitionValidator is fully constructed.
124 @post No change to the iUTContext class.
126 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
127 }; // TBackupNotifier_Dtor_TransitionValidator
129 #include "BackupNotifierTransitionValidation.inl"
131 #endif // __BACKUPNOTIFIERTRANSITIONVALIDATION_H__