os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitionValidation.inl
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 implementation of the transition validation classes upon the CUnitTest class methods.
18 // ______________________________________________________________________________
20 inline TUnitTest_Ctor_TransitionValidator::TUnitTest_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
21 :TTransitionValidator(aUTContext)
26 inline TBool TUnitTest_Ctor_TransitionValidator::ValidatePreConditions()
31 inline TBool TUnitTest_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
33 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
38 // ______________________________________________________________________________
40 inline TUnitTest_Dtor_TransitionValidator::TUnitTest_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
41 :TTransitionValidator(aUTContext)
46 inline TBool TUnitTest_Dtor_TransitionValidator::ValidatePreConditions()
48 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
53 inline TBool TUnitTest_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
58 // ______________________________________________________________________________
60 inline TUnitTest_TransitionSet_TransitionValidator::TUnitTest_TransitionSet_TransitionValidator(CUnitTestContext& aUTContext)
61 :TTransitionValidator(aUTContext)
66 inline TBool TUnitTest_TransitionSet_TransitionValidator::ValidatePreConditions()
71 inline TBool TUnitTest_TransitionSet_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
73 // Implement the correct post-condition test for this unit test transition.
74 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
75 // For a d'tor this should be empty.
76 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
81 // ______________________________________________________________________________
83 inline TUnitTest_GetCurrentTransition_TransitionValidator::TUnitTest_GetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
84 :TTransitionValidator(aUTContext)
89 inline TBool TUnitTest_GetCurrentTransition_TransitionValidator::ValidatePreConditions()
94 inline TBool TUnitTest_GetCurrentTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
96 // Implement the correct post-condition test for this unit test transition.
97 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
98 // For a d'tor this should be empty.
99 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
104 // ______________________________________________________________________________
106 inline TUnitTest_SetCurrentTransition_TransitionValidator::TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
107 :TTransitionValidator(aUTContext)
112 inline TBool TUnitTest_SetCurrentTransition_TransitionValidator::ValidatePreConditions()
114 // Implement the correct pre-condition test for this unit test transition.
115 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
116 // For a c'tor this should be empty.
117 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
122 inline TBool TUnitTest_SetCurrentTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
124 // Implement the correct post-condition test for this unit test transition.
125 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
126 // For a d'tor this should be empty.
127 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
132 // ______________________________________________________________________________
134 inline TUnitTest_SetParameters_TransitionValidator::TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext)
135 :TTransitionValidator(aUTContext)
140 inline TBool TUnitTest_SetParameters_TransitionValidator::ValidatePreConditions()
142 // Implement the correct pre-condition test for this unit test transition.
143 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
144 // For a c'tor this should be empty.
145 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
150 inline TBool TUnitTest_SetParameters_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
152 // Implement the correct post-condition test for this unit test transition.
153 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
154 // For a d'tor this should be empty.
155 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
160 // ______________________________________________________________________________
162 inline TUnitTest_PrepareUnitTest_TransitionValidator::TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
163 :TTransitionValidator(aUTContext)
168 _LIT(KPrepareUnitTestFailedInvariant,
169 "CUnitTest_PrepareUnitTest_Transition invariant failure");
171 inline TBool TUnitTest_PrepareUnitTest_TransitionValidator::ValidatePreConditions()
173 // Implement the correct pre-condition test for this unit test transition.
174 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
175 // For a c'tor this should be empty.
176 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
178 iUTContext.DataLogger().LogInformation(KPrepareUnitTestFailedInvariant);
184 inline TBool TUnitTest_PrepareUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
186 // Implement the correct post-condition test for this unit test transition.
187 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
188 // For a d'tor this should be empty.
189 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
191 iUTContext.DataLogger().LogInformation(KPrepareUnitTestFailedInvariant);
197 // ______________________________________________________________________________
199 inline TUnitTest_RunTest_TransitionValidator::TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext)
200 :TTransitionValidator(aUTContext)
205 inline TBool TUnitTest_RunTest_TransitionValidator::ValidatePreConditions()
210 inline TBool TUnitTest_RunTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
212 // Implement the correct post-condition test for this unit test transition.
213 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
214 // For a d'tor this should be empty.
215 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
220 // ______________________________________________________________________________
222 inline TUnitTest_AddTransition_TransitionValidator::TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext)
223 :TTransitionValidator(aUTContext)
228 inline TBool TUnitTest_AddTransition_TransitionValidator::ValidatePreConditions()
230 // Implement the correct pre-condition test for this unit test transition.
231 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
232 // For a c'tor this should be empty.
233 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
238 inline TBool TUnitTest_AddTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
240 // Implement the correct post-condition test for this unit test transition.
241 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
242 // For a d'tor this should be empty.
243 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
248 // ______________________________________________________________________________
250 inline TUnitTest_AddBlockingTransition_TransitionValidator::TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext)
251 :TTransitionValidator(aUTContext)
256 inline TBool TUnitTest_AddBlockingTransition_TransitionValidator::ValidatePreConditions()
258 // Implement the correct pre-condition test for this unit test transition.
259 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
260 // For a c'tor this should be empty.
261 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
266 inline TBool TUnitTest_AddBlockingTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
268 // Implement the correct post-condition test for this unit test transition.
269 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
270 // For a d'tor this should be empty.
271 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
276 // ______________________________________________________________________________
278 inline TUnitTest_AddLeaveErrorCode_TransitionValidator::TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
279 :TTransitionValidator(aUTContext)
284 _LIT(KAddLeaveErrorCodeFailedInvariant,
285 "CUnitTest_AddLeaveErrorCode_Transition invariant failure");
287 inline TBool TUnitTest_AddLeaveErrorCode_TransitionValidator::ValidatePreConditions()
289 // Implement the correct pre-condition test for this unit test transition.
290 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
291 // For a c'tor this should be empty.
292 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
294 iUTContext.DataLogger().LogInformation(KAddLeaveErrorCodeFailedInvariant);
300 inline TBool TUnitTest_AddLeaveErrorCode_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
302 // Implement the correct post-condition test for this unit test transition.
303 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
304 // For a d'tor this should be empty.
305 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
307 iUTContext.DataLogger().LogInformation(KAddLeaveErrorCodeFailedInvariant);
313 // ______________________________________________________________________________
315 inline TUnitTest_UnitTestName_TransitionValidator::TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext)
316 :TTransitionValidator(aUTContext)
321 inline TBool TUnitTest_UnitTestName_TransitionValidator::ValidatePreConditions()
326 inline TBool TUnitTest_UnitTestName_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
328 // Implement the correct post-condition test for this unit test transition.
329 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
330 // For a d'tor this should be empty.
331 if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))