os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitionValidation.h
First public contribution.
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 // The definition of the validation classes for the CResolver class tests.
18 #ifndef __RESOLVERTRANSITIONVALIDATION_H__
19 #define __RESOLVERTRANSITIONVALIDATION_H__
21 // ______________________________________________________________________________
26 Comments : Provide all the CtorUnit Test's specific
27 validatation for the state of a transition before and after its execution.
28 on the CDefaultResolver test class for a transition.
30 class TDefaultResolver_Ctor_TransitionValidator : public TTransitionValidator
34 @fn TDefaultResolver_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
35 Intended Usage : Default constructor
38 @param aUTContext The context within which this transition is executing
40 inline TDefaultResolver_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
43 @fn ValidatePreConditions()
44 Intended Usage : Implemented by the developer to check the
45 end state of the transition behaviour.
46 Error Condition : Invalid pre-conditions
48 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
49 @pre TDefaultResolver_Ctor_TransitionValidator is fully constructed.
50 @post No change to the iUTContext class.
52 virtual inline TBool ValidatePreConditions();
55 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
56 Intended Usage : Implemented by the developer to check the
57 end state of the transition behaviour.
58 When overriding, if the transition calls an asynchronous function
59 ValidatePostConditions will be called twice. Firstly, after the
60 asynchronous function has been called and, secondly, after the
61 asynchronous request has completed. The parameter aAsyncState can
62 be used to distinguish between these two cases.
63 Error Condition : Invalid post-conditions.
65 @param aAsyncState EAsyncCalled if the async function has been just been called,
66 EAsyncCompleted if the function has completed.
67 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
68 @pre TDefaultResolver_Ctor_TransitionValidator is fully constructed.
69 @post No change to the iUTContext class.
71 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
72 }; // TDefaultResolver_Ctor_TransitionValidator
74 // ______________________________________________________________________________
79 Comments : Provide all the DtorUnit Test's specific
80 validatation for the state of a transition before and after its execution.
81 on the CDefaultResolver test class for a transition.
83 class TDefaultResolver_Dtor_TransitionValidator : public TTransitionValidator
87 @fn TDefaultResolver_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
91 @param aUTContext The context within which this transition is executing
93 inline TDefaultResolver_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
96 @fn ValidatePreConditions()
97 Intended Usage : Implemented by the developer to check the
98 end state of the transition behaviour.
99 Error Condition : Invalid pre-conditions
101 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
102 @pre TDefaultResolver_Dtor_TransitionValidator is fully constructed.
103 @post No change to the iUTContext class.
105 virtual inline TBool ValidatePreConditions();
108 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
109 Intended Usage : Implemented by the developer to check the
110 end state of the transition behaviour.
111 When overriding, if the transition calls an asynchronous function
112 ValidatePostConditions will be called twice. Firstly, after the
113 asynchronous function has been called and, secondly, after the
114 asynchronous request has completed. The parameter aAsyncState can
115 be used to distinguish between these two cases.
116 Error Condition : Invalid post-conditions.
118 @param aAsyncState EAsyncCalled if the async function has been just been called,
119 EAsyncCompleted if the function has completed.
120 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
121 @pre TDefaultResolver_Dtor_TransitionValidator is fully constructed.
122 @post No change to the iUTContext class.
124 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
125 }; // TDefaultResolver_Dtor_TransitionValidator
127 // ______________________________________________________________________________
132 Comments : Provide all the DefaultUnit Test's specific
133 validatation for the state of a transition before and after its execution.
134 on the CDefaultResolver test class for a transition.
136 class TDefaultResolver_Default_TransitionValidator : public TTransitionValidator
140 @fn TDefaultResolver_Default_TransitionValidator(CUnitTestContext& aUTContext)
144 @param aUTContext The context within which this transition is executing
146 inline TDefaultResolver_Default_TransitionValidator(CUnitTestContext& aUTContext);
149 @fn ValidatePreConditions()
150 Intended Usage : Implemented by the developer to check the
151 end state of the transition behaviour.
152 Error Condition : Invalid pre-conditions
154 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
155 @pre TDefaultResolver_Default_TransitionValidator is fully constructed.
156 @post No change to the iUTContext class.
158 virtual inline TBool ValidatePreConditions();
161 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
162 Intended Usage : Implemented by the developer to check the
163 end state of the transition behaviour.
164 When overriding, if the transition calls an asynchronous function
165 ValidatePostConditions will be called twice. Firstly, after the
166 asynchronous function has been called and, secondly, after the
167 asynchronous request has completed. The parameter aAsyncState can
168 be used to distinguish between these two cases.
169 Error Condition : Invalid post-conditions.
171 @param aAsyncState EAsyncCalled if the async function has been just been called,
172 EAsyncCompleted if the function has completed.
173 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
174 @pre TDefaultResolver_Default_TransitionValidator is fully constructed.
175 @post No change to the iUTContext class.
177 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
178 }; // TDefaultResolver_Default_TransitionValidator
180 // ______________________________________________________________________________
185 Comments : Provide all the IdentifyImplementationLUnit Test's specific
186 validatation for the state of a transition before and after its execution.
187 on the CDefaultResolver test class for a transition.
189 class TDefaultResolver_IdentifyImplementationL_TransitionValidator : public TTransitionValidator
193 @fn TDefaultResolver_IdentifyImplementationL_TransitionValidator(CUnitTestContext& aUTContext)
197 @param aUTContext The context within which this transition is executing
199 inline TDefaultResolver_IdentifyImplementationL_TransitionValidator(CUnitTestContext& aUTContext);
202 @fn ValidatePreConditions()
203 Intended Usage : Implemented by the developer to check the
204 end state of the transition behaviour.
205 Error Condition : Invalid pre-conditions
207 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
208 @pre TDefaultResolver_IdentifyImplementationL_TransitionValidator is fully constructed.
209 @post No change to the iUTContext class.
211 virtual inline TBool ValidatePreConditions();
214 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
215 Intended Usage : Implemented by the developer to check the
216 end state of the transition behaviour.
217 When overriding, if the transition calls an asynchronous function
218 ValidatePostConditions will be called twice. Firstly, after the
219 asynchronous function has been called and, secondly, after the
220 asynchronous request has completed. The parameter aAsyncState can
221 be used to distinguish between these two cases.
222 Error Condition : Invalid post-conditions.
224 @param aAsyncState EAsyncCalled if the async function has been just been called,
225 EAsyncCompleted if the function has completed.
226 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
227 @pre TDefaultResolver_IdentifyImplementationL_TransitionValidator is fully constructed.
228 @post No change to the iUTContext class.
230 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
231 }; // TDefaultResolver_IdentifyImplementationL_TransitionValidator
233 // ______________________________________________________________________________
238 Comments : Provide all the MatchUnit Test's specific
239 validatation for the state of a transition before and after its execution.
240 on the CDefaultResolver test class for a transition.
242 class TDefaultResolver_Match_TransitionValidator : public TTransitionValidator
246 @fn TDefaultResolver_Match_TransitionValidator(CUnitTestContext& aUTContext)
250 @param aUTContext The context within which this transition is executing
252 inline TDefaultResolver_Match_TransitionValidator(CUnitTestContext& aUTContext);
255 @fn ValidatePreConditions()
256 Intended Usage : Implemented by the developer to check the
257 end state of the transition behaviour.
258 Error Condition : Invalid pre-conditions
260 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
261 @pre TDefaultResolver_Match_TransitionValidator is fully constructed.
262 @post No change to the iUTContext class.
264 virtual inline TBool ValidatePreConditions();
267 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
268 Intended Usage : Implemented by the developer to check the
269 end state of the transition behaviour.
270 When overriding, if the transition calls an asynchronous function
271 ValidatePostConditions will be called twice. Firstly, after the
272 asynchronous function has been called and, secondly, after the
273 asynchronous request has completed. The parameter aAsyncState can
274 be used to distinguish between these two cases.
275 Error Condition : Invalid post-conditions.
277 @param aAsyncState EAsyncCalled if the async function has been just been called,
278 EAsyncCompleted if the function has completed.
279 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
280 @pre TDefaultResolver_Match_TransitionValidator is fully constructed.
281 @post No change to the iUTContext class.
283 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
284 }; // TDefaultResolver_Match_TransitionValidator
286 #include "ResolverTransitionValidation.inl"
288 #endif // __RESOLVERTRANSITIONVALIDATION_H__