os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitions.inl
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 implementation of the transition classes upon the CComponentInfo class methods.
18 // ______________________________________________________________________________
20 _LIT(KComponentInfoNewLTransition,"CComponentInfo_NewL_Transition");
22 inline CComponentInfo_NewL_Transition::CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
23 TTransitionValidator& aValidator)
24 : CTransitionType(KComponentInfoNewLTransition, aUTContext, aValidator)
29 inline void CComponentInfo_NewL_Transition::TransitMethodL()
31 _LIT(KComponentInfoNewLTransitMethod, "CComponentInfo::NewL transition");
32 Context().DataLogger().LogInformation(KComponentInfoNewLTransitMethod);
33 Context().iComponentInfo = CComponentInfo::NewL(Context().iEntryFunc,Context().iTestInfoArray);
34 Context().iOwnParams = EFalse;
37 inline CComponentInfo_UnitTestContext& CComponentInfo_NewL_Transition::Context() const
39 return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
42 // ______________________________________________________________________________
44 _LIT(KComponentInfoDtorTransition,"CComponentInfo_Dtor_Transition");
46 inline CComponentInfo_Dtor_Transition::CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
47 TTransitionValidator& aValidator)
48 : CTransition(KComponentInfoDtorTransition, aUTContext, aValidator)
53 inline void CComponentInfo_Dtor_Transition::TransitMethodL()
55 _LIT(KComponentInfoDtorTransitMethod, "CComponentInfo::Dtor transition");
56 Context().DataLogger().LogInformation(KComponentInfoDtorTransitMethod);
57 delete Context().iComponentInfo;
58 Context().iComponentInfo = NULL;
59 __UHEAP_MARKEND; /*removed from leaktransitiontest.cpp and added here to resolve alloc issue due to removal of reference to RHeap's member variable*/
63 inline CComponentInfo_UnitTestContext& CComponentInfo_Dtor_Transition::Context() const
65 return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
68 // ______________________________________________________________________________
70 _LIT(KComponentInfoEntryTransition,"CComponentInfo_Entry_Transition");
72 inline CComponentInfo_Entry_Transition::CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
73 TTransitionValidator& aValidator)
74 : CTransition(KComponentInfoEntryTransition, aUTContext, aValidator)
79 inline void CComponentInfo_Entry_Transition::TransitMethodL()
81 _LIT(KComponentInfoEntryTransitMethod, "CComponentInfo::Entry transition");
82 Context().DataLogger().LogInformation(KComponentInfoEntryTransitMethod);
83 Context().iEntryFuncPostCheck = Context().iComponentInfo->GlobalEntryFunc();
86 inline CComponentInfo_UnitTestContext& CComponentInfo_Entry_Transition::Context() const
88 return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
91 // ______________________________________________________________________________
93 _LIT(KComponentInfoUnitTestsInfoTransition,"CComponentInfo_UnitTestsInfo_Transition");
95 inline CComponentInfo_UnitTestsInfo_Transition::CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
96 TTransitionValidator& aValidator)
97 : CTransition(KComponentInfoUnitTestsInfoTransition, aUTContext, aValidator)
102 inline void CComponentInfo_UnitTestsInfo_Transition::TransitMethodL()
104 _LIT(KComponentInfoUnitTestsInfoTransitMethod, "CComponentInfo::UnitTestsInfo transition");
105 Context().DataLogger().LogInformation(KComponentInfoUnitTestsInfoTransitMethod);
106 Context().iTestInfoArrayPostCheck = &Context().iComponentInfo->UnitTestsInfo();
109 inline CComponentInfo_UnitTestContext& CComponentInfo_UnitTestsInfo_Transition::Context() const
111 return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);