sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The implementation of the transition classes upon the CComponentInfo class methods. sl@0: // sl@0: // sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoNewLTransition,"CComponentInfo_NewL_Transition"); sl@0: sl@0: inline CComponentInfo_NewL_Transition::CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentInfoNewLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentInfo_NewL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentInfoNewLTransitMethod, "CComponentInfo::NewL transition"); sl@0: Context().DataLogger().LogInformation(KComponentInfoNewLTransitMethod); sl@0: Context().iComponentInfo = CComponentInfo::NewL(Context().iEntryFunc,Context().iTestInfoArray); sl@0: Context().iOwnParams = EFalse; sl@0: } sl@0: sl@0: inline CComponentInfo_UnitTestContext& CComponentInfo_NewL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoDtorTransition,"CComponentInfo_Dtor_Transition"); sl@0: sl@0: inline CComponentInfo_Dtor_Transition::CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentInfoDtorTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentInfo_Dtor_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentInfoDtorTransitMethod, "CComponentInfo::Dtor transition"); sl@0: Context().DataLogger().LogInformation(KComponentInfoDtorTransitMethod); sl@0: delete Context().iComponentInfo; sl@0: Context().iComponentInfo = NULL; sl@0: __UHEAP_MARKEND; /*removed from leaktransitiontest.cpp and added here to resolve alloc issue due to removal of reference to RHeap's member variable*/ sl@0: sl@0: } sl@0: sl@0: inline CComponentInfo_UnitTestContext& CComponentInfo_Dtor_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoEntryTransition,"CComponentInfo_Entry_Transition"); sl@0: sl@0: inline CComponentInfo_Entry_Transition::CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentInfoEntryTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentInfo_Entry_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentInfoEntryTransitMethod, "CComponentInfo::Entry transition"); sl@0: Context().DataLogger().LogInformation(KComponentInfoEntryTransitMethod); sl@0: Context().iEntryFuncPostCheck = Context().iComponentInfo->GlobalEntryFunc(); sl@0: } sl@0: sl@0: inline CComponentInfo_UnitTestContext& CComponentInfo_Entry_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoUnitTestsInfoTransition,"CComponentInfo_UnitTestsInfo_Transition"); sl@0: sl@0: inline CComponentInfo_UnitTestsInfo_Transition::CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentInfoUnitTestsInfoTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentInfo_UnitTestsInfo_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentInfoUnitTestsInfoTransitMethod, "CComponentInfo::UnitTestsInfo transition"); sl@0: Context().DataLogger().LogInformation(KComponentInfoUnitTestsInfoTransitMethod); sl@0: Context().iTestInfoArrayPostCheck = &Context().iComponentInfo->UnitTestsInfo(); sl@0: } sl@0: sl@0: inline CComponentInfo_UnitTestContext& CComponentInfo_UnitTestsInfo_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext); sl@0: }