os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitionValidation.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 // The definitions of the transition classes upon the CComponentInfo class methods.
18 #ifndef __COMPONENTINFOTRANSITIONVALIDATION_H__
19 #define __COMPONENTINFOTRANSITIONVALIDATION_H__
21 #include "ComponentInfoTransitions.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 CComponentInfo test class for a transition.
32 class TComponentInfo_Ctor_TransitionValidator : public TTransitionValidator
36 @fn TComponentInfo_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
37 Intended Usage : Default constructor
40 @param aUTContext The context within which this transition is executing
42 inline TComponentInfo_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
45 @fn ValidatePreConditions()
46 Intended Usage : Checks the start state of the ComponentInfo transition behaviour.
47 Error Condition : Invalid pre-conditions
49 @return ETrue if the pre-conditions were valid, EFalse otherwise.
50 @pre TComponentInfo_Ctor_TransitionValidator is fully constructed.
51 @post No change to the iUTContext class.
53 virtual inline TBool ValidatePreConditions();
56 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
57 Intended Usage : Implemented by the developer to check the
58 end state of the transition behaviour.
59 When overriding, if the transition calls an asynchronous function
60 ValidatePostConditions will be called twice. Firstly, after the
61 asynchronous function has been called and, secondly, after the
62 asynchronous request has completed. The parameter aAsyncState can
63 be used to distinguish between these two cases.
64 Error Condition : Invalid post-conditions.
66 @param aAsyncState EAsyncCalled if the async function has been just been called,
67 EAsyncCompleted if the function has completed.
68 @return ETrue if the post-conditions were valid, EFalse otherwise.
69 @pre TComponentInfo_Ctor_TransitionValidator is fully constructed.
70 @post No change to the iUTContext class.
72 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
73 }; // TComponentInfo_Ctor_TransitionValidator
75 // ______________________________________________________________________________
80 Comments : Provide all the DtorUnit Test's specific
81 validatation for the state of a transition before and after its execution.
82 on the CComponentInfo test class for a transition.
84 class TComponentInfo_Dtor_TransitionValidator : public TTransitionValidator
88 @fn TComponentInfo_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
92 @param aUTContext The context within which this transition is executing
94 inline TComponentInfo_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
97 @fn ValidatePreConditions()
98 Intended Usage : Implemented by the developer to check the
99 end state of the transition behaviour.
100 Error Condition : Invalid pre-conditions
102 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
103 @pre TComponentInfo_Dtor_TransitionValidator is fully constructed.
104 @post No change to the iUTContext class.
106 virtual inline TBool ValidatePreConditions();
109 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
110 Intended Usage : Implemented by the developer to check the
111 end state of the transition behaviour.
112 When overriding, if the transition calls an asynchronous function
113 ValidatePostConditions will be called twice. Firstly, after the
114 asynchronous function has been called and, secondly, after the
115 asynchronous request has completed. The parameter aAsyncState can
116 be used to distinguish between these two cases.
117 Error Condition : Invalid post-conditions.
119 @param aAsyncState EAsyncCalled if the async function has been just been called,
120 EAsyncCompleted if the function has completed.
121 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
122 @pre TComponentInfo_Dtor_TransitionValidator is fully constructed.
123 @post No change to the iUTContext class.
125 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
126 }; // TComponentInfo_Dtor_TransitionValidator
128 // ______________________________________________________________________________
133 Comments : Provide all the EntryUnit Test's specific
134 validatation for the state of a transition before and after its execution.
135 on the CComponentInfo test class for a transition.
137 class TComponentInfo_Entry_TransitionValidator : public TTransitionValidator
141 @fn TComponentInfo_Entry_TransitionValidator(CUnitTestContext& aUTContext)
145 @param aUTContext The context within which this transition is executing
147 inline TComponentInfo_Entry_TransitionValidator(CUnitTestContext& aUTContext);
150 @fn ValidatePreConditions()
151 Intended Usage : Implemented by the developer to check the
152 end state of the transition behaviour.
153 Error Condition : Invalid pre-conditions
155 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
156 @pre TComponentInfo_Entry_TransitionValidator is fully constructed.
157 @post No change to the iUTContext class.
159 virtual inline TBool ValidatePreConditions();
162 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
163 Intended Usage : Implemented by the developer to check the
164 end state of the transition behaviour.
165 When overriding, if the transition calls an asynchronous function
166 ValidatePostConditions will be called twice. Firstly, after the
167 asynchronous function has been called and, secondly, after the
168 asynchronous request has completed. The parameter aAsyncState can
169 be used to distinguish between these two cases.
170 Error Condition : Invalid post-conditions.
172 @param aAsyncState EAsyncCalled if the async function has been just been called,
173 EAsyncCompleted if the function has completed.
174 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
175 @pre TComponentInfo_Entry_TransitionValidator is fully constructed.
176 @post No change to the iUTContext class.
178 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
179 }; // TComponentInfo_Entry_TransitionValidator
181 // ______________________________________________________________________________
186 Comments : Provide all the UnitTestsInfoUnit Test's specific
187 validatation for the state of a transition before and after its execution.
188 on the CComponentInfo test class for a transition.
190 class TComponentInfo_UnitTestsInfo_TransitionValidator : public TTransitionValidator
194 @fn TComponentInfo_UnitTestsInfo_TransitionValidator(CUnitTestContext& aUTContext)
198 @param aUTContext The context within which this transition is executing
200 inline TComponentInfo_UnitTestsInfo_TransitionValidator(CUnitTestContext& aUTContext);
203 @fn ValidatePreConditions()
204 Intended Usage : Implemented by the developer to check the
205 end state of the transition behaviour.
206 Error Condition : Invalid pre-conditions
208 @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
209 @pre TComponentInfo_UnitTestsInfo_TransitionValidator is fully constructed.
210 @post No change to the iUTContext class.
212 virtual inline TBool ValidatePreConditions();
215 @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
216 Intended Usage : Implemented by the developer to check the
217 end state of the transition behaviour.
218 When overriding, if the transition calls an asynchronous function
219 ValidatePostConditions will be called twice. Firstly, after the
220 asynchronous function has been called and, secondly, after the
221 asynchronous request has completed. The parameter aAsyncState can
222 be used to distinguish between these two cases.
223 Error Condition : Invalid post-conditions.
225 @param aAsyncState EAsyncCalled if the async function has been just been called,
226 EAsyncCompleted if the function has completed.
227 @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
228 @pre TComponentInfo_UnitTestsInfo_TransitionValidator is fully constructed.
229 @post No change to the iUTContext class.
231 virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
232 }; // TComponentInfo_UnitTestsInfo_TransitionValidator
236 #include "ComponentInfoTransitionValidation.inl"
238 #endif // __COMPONENTINFOTRANSITIONVALIDATION_H__