os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitions.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoTransitions.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The implementation of the transition classes upon the CComponentInfo class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +_LIT(KComponentInfoNewLTransition,"CComponentInfo_NewL_Transition");
1.24 +
1.25 +inline CComponentInfo_NewL_Transition::CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
1.26 + TTransitionValidator& aValidator)
1.27 +: CTransitionType(KComponentInfoNewLTransition, aUTContext, aValidator)
1.28 + {
1.29 + // Do nothing here.
1.30 + }
1.31 +
1.32 +inline void CComponentInfo_NewL_Transition::TransitMethodL()
1.33 + {
1.34 + _LIT(KComponentInfoNewLTransitMethod, "CComponentInfo::NewL transition");
1.35 + Context().DataLogger().LogInformation(KComponentInfoNewLTransitMethod);
1.36 + Context().iComponentInfo = CComponentInfo::NewL(Context().iEntryFunc,Context().iTestInfoArray);
1.37 + Context().iOwnParams = EFalse;
1.38 + }
1.39 +
1.40 +inline CComponentInfo_UnitTestContext& CComponentInfo_NewL_Transition::Context() const
1.41 + {
1.42 + return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
1.43 + }
1.44 +
1.45 +// ______________________________________________________________________________
1.46 +//
1.47 +_LIT(KComponentInfoDtorTransition,"CComponentInfo_Dtor_Transition");
1.48 +
1.49 +inline CComponentInfo_Dtor_Transition::CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
1.50 + TTransitionValidator& aValidator)
1.51 +: CTransition(KComponentInfoDtorTransition, aUTContext, aValidator)
1.52 + {
1.53 + // Do nothing here.
1.54 + }
1.55 +
1.56 +inline void CComponentInfo_Dtor_Transition::TransitMethodL()
1.57 + {
1.58 + _LIT(KComponentInfoDtorTransitMethod, "CComponentInfo::Dtor transition");
1.59 + Context().DataLogger().LogInformation(KComponentInfoDtorTransitMethod);
1.60 + delete Context().iComponentInfo;
1.61 + Context().iComponentInfo = NULL;
1.62 + __UHEAP_MARKEND; /*removed from leaktransitiontest.cpp and added here to resolve alloc issue due to removal of reference to RHeap's member variable*/
1.63 +
1.64 + }
1.65 +
1.66 +inline CComponentInfo_UnitTestContext& CComponentInfo_Dtor_Transition::Context() const
1.67 + {
1.68 + return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
1.69 + }
1.70 +
1.71 +// ______________________________________________________________________________
1.72 +//
1.73 +_LIT(KComponentInfoEntryTransition,"CComponentInfo_Entry_Transition");
1.74 +
1.75 +inline CComponentInfo_Entry_Transition::CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
1.76 + TTransitionValidator& aValidator)
1.77 +: CTransition(KComponentInfoEntryTransition, aUTContext, aValidator)
1.78 + {
1.79 + // Do nothing here.
1.80 + }
1.81 +
1.82 +inline void CComponentInfo_Entry_Transition::TransitMethodL()
1.83 + {
1.84 + _LIT(KComponentInfoEntryTransitMethod, "CComponentInfo::Entry transition");
1.85 + Context().DataLogger().LogInformation(KComponentInfoEntryTransitMethod);
1.86 + Context().iEntryFuncPostCheck = Context().iComponentInfo->GlobalEntryFunc();
1.87 + }
1.88 +
1.89 +inline CComponentInfo_UnitTestContext& CComponentInfo_Entry_Transition::Context() const
1.90 + {
1.91 + return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
1.92 + }
1.93 +
1.94 +// ______________________________________________________________________________
1.95 +//
1.96 +_LIT(KComponentInfoUnitTestsInfoTransition,"CComponentInfo_UnitTestsInfo_Transition");
1.97 +
1.98 +inline CComponentInfo_UnitTestsInfo_Transition::CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
1.99 + TTransitionValidator& aValidator)
1.100 +: CTransition(KComponentInfoUnitTestsInfoTransition, aUTContext, aValidator)
1.101 + {
1.102 + // Do nothing here.
1.103 + }
1.104 +
1.105 +inline void CComponentInfo_UnitTestsInfo_Transition::TransitMethodL()
1.106 + {
1.107 + _LIT(KComponentInfoUnitTestsInfoTransitMethod, "CComponentInfo::UnitTestsInfo transition");
1.108 + Context().DataLogger().LogInformation(KComponentInfoUnitTestsInfoTransitMethod);
1.109 + Context().iTestInfoArrayPostCheck = &Context().iComponentInfo->UnitTestsInfo();
1.110 + }
1.111 +
1.112 +inline CComponentInfo_UnitTestContext& CComponentInfo_UnitTestsInfo_Transition::Context() const
1.113 + {
1.114 + return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
1.115 + }