os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideTransitionValidation.h
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Definitions for the transition validation classes for ECom
18 #ifndef __SUICIDEINTERFACETRANSITIONVALIDATION_H__
19 #define __SUICIDEINTERFACETRANSITIONVALIDATION_H__
21 #include "SuicideTransitions.h"
24 // ______________________________________________________________________________
29 Comments : Provide all the CtorUnit Test's specific
30 validatation for the state of a transition before and after its execution.
31 on the sucicidal CExampleInterface test class for a transition.
33 class TSuicideInterface_Ctor_TransitionValidator : public TTransitionValidator
37 @fn TSuicideInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
38 Intended Usage : Default constructor
41 @param aUTContext The context within which this transition is executing
43 inline TSuicideInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
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
51 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
52 @pre TSuicideInterface_Ctor_TransitionValidator is fully constructed.
53 @post No change to the iUTContext class.
55 virtual inline TBool ValidatePreConditions();
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.
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 TSuicideInterface_Ctor_TransitionValidator is fully constructed.
72 @post No change to the iUTContext class.
74 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
75 }; // TSuicideInterface_Ctor_TransitionValidator
77 // ______________________________________________________________________________
82 Comments : Provide all the DtorUnit Test's specific
83 validatation for the state of a transition before and after its execution.
84 on the suicidal CExampleInterface test class for a transition.
86 class TSuicideInterface_Dtor_TransitionValidator : public TTransitionValidator
90 @fn TSuicideInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
91 Intended Usage : Default constructor
94 @param aUTContext The context within which this transition is executing
96 inline TSuicideInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
99 @fn ValidatePreConditions()
100 Intended Usage : Implemented by the developer to check the
101 end state of the transition behaviour.
102 Error Condition : Invalid pre-conditions
104 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
105 @pre TSuicideInterface_Dtor_TransitionValidator is fully constructed.
106 @post No change to the iUTContext class.
108 virtual inline TBool ValidatePreConditions();
111 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
112 Intended Usage : Implemented by the developer to check the
113 end state of the transition behaviour.
114 When overriding, if the transition calls an asynchronous function
115 ValidatePostConditions will be called twice. Firstly, after the
116 asynchronous function has been called and, secondly, after the
117 asynchronous request has completed. The parameter aAsyncState can
118 be used to distinguish between these two cases.
119 Error Condition : Invalid post-conditions.
121 @param aAsyncState EAsyncCalled if the async function has been just been called,
122 EAsyncCompleted if the function has completed.
123 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
124 @pre TSuicideInterface_Dtor_TransitionValidator is fully constructed.
125 @post No change to the iUTContext class.
127 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
128 }; // TSuicideInterface_Dtor_TransitionValidator
130 // ______________________________________________________________________________
135 Comments : Provide all the FireAndForgetUnit Test's specific
136 validatation for the state of a transition before and after its execution.
137 on the suicidal CExampleInterface test class for a transition.
139 class TSuicideInterface_FireAndForget_TransitionValidator : public TTransitionValidator
143 @fn TSuicideInterface_FireAndForget_TransitionValidator(CUnitTestContext& aUTContext)
147 @param aUTContext The context within which this transition is executing
149 inline TSuicideInterface_FireAndForget_TransitionValidator(CUnitTestContext& aUTContext);
152 @fn ValidatePreConditions()
153 Intended Usage : Implemented by the developer to check the
154 end state of the transition behaviour.
155 Error Condition : Invalid pre-conditions
157 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
158 @pre TSuicideInterface_FireAndForget_TransitionValidator is fully constructed.
159 @post No change to the iUTContext class.
161 virtual inline TBool ValidatePreConditions();
164 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
165 Intended Usage : Implemented by the developer to check the
166 end state of the transition behaviour.
167 When overriding, if the transition calls an asynchronous function
168 ValidatePostConditions will be called twice. Firstly, after the
169 asynchronous function has been called and, secondly, after the
170 asynchronous request has completed. The parameter aAsyncState can
171 be used to distinguish between these two cases.
172 Error Condition : Invalid post-conditions.
174 @param aAsyncState EAsyncCalled if the async function has been just been called,
175 EAsyncCompleted if the function has completed.
176 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
177 @pre TSuicideInterface_FireAndForget_TransitionValidator is fully constructed.
178 @post No change to the iUTContext class.
180 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
181 }; // TSuicideInterface_FireAndForget_TransitionValidator
183 #include "SuicideTransitionValidation.inl"
185 #endif // __SUICIDEINTERFACETRANSITIONVALIDATION_H__