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 CComponentTester class methods. sl@0: // sl@0: // sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterNewLTransition,"CComponentTester_NewL_Transition"); sl@0: sl@0: inline CComponentTester_NewL_Transition::CComponentTester_NewL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentTesterNewLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_NewL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterNewLTransitMethod, "CComponentTester::NewL transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterNewLTransitMethod); sl@0: TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor()); sl@0: Context().iComponentUnderTest = accessor.CreateComponentTester(*(Context().iComponentTester), *Context().iDataLogger, *Context().iObserver); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_NewL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterDtorTransition,"CComponentTester_Dtor_Transition"); sl@0: sl@0: inline CComponentTester_Dtor_Transition::CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentTesterDtorTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_Dtor_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterDtorTransitMethod, "CComponentTester::Dtor transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterDtorTransitMethod); sl@0: delete Context().iComponentTester; sl@0: Context().iComponentTester = NULL; sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_Dtor_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterTransitionSetsLTransition,"CComponentTester_TransitionSetsL_Transition"); sl@0: sl@0: inline CComponentTester_TransitionSetsL_Transition::CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentTesterTransitionSetsLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_TransitionSetsL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterTransitionSetsLTransitMethod, "CComponentTester::TransitionSetsL transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterTransitionSetsLTransitMethod); sl@0: Context().iComponentTester->TransitionSetsL(); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_TransitionSetsL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterAddUnitTestLTransition,"CComponentTester_AddUnitTestL_Transition"); sl@0: sl@0: inline CComponentTester_AddUnitTestL_Transition::CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentTesterAddUnitTestLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_AddUnitTestL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterAddUnitTestLTransitMethod, "CComponentTester::AddUnitTestL transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterAddUnitTestLTransitMethod); sl@0: TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor()); sl@0: accessor.AddUnitTestL(*(Context().iComponentTester), (Context().iUnitTest)); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_AddUnitTestL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterAddParamUnitTestLTransition,"CComponentTester_AddParamUnitTestL_Transition"); sl@0: sl@0: inline CComponentTester_AddParamUnitTestL_Transition::CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentTesterAddParamUnitTestLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_AddParamUnitTestL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterAddParamUnitTestLTransitMethod, "CComponentTester::AddParamUnitTestL transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterAddParamUnitTestLTransitMethod); sl@0: TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor()); sl@0: accessor.AddParamUnitTestL(*(Context().iComponentTester), (Context().iUnitTest)); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_AddParamUnitTestL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterTestComponentTransition,"CComponentTester_TestComponent_Transition"); sl@0: sl@0: inline CComponentTester_TestComponent_Transition::CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentTesterTestComponentTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_TestComponent_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterTestComponentTransitMethod, "CComponentTester::TestComponent transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterTestComponentTransitMethod); sl@0: Context().iComponentTester->TestComponent(&Context().iTests); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_TestComponent_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterRunLTransition,"CComponentTester_RunL_Transition"); sl@0: sl@0: inline CComponentTester_RunL_Transition::CComponentTester_RunL_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KComponentTesterRunLTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_RunL_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterRunLTransitMethod, "CComponentTester::RunL transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterRunLTransitMethod); sl@0: TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor()); sl@0: accessor.RunL(*(Context().iComponentTester)); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_RunL_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentTesterCompleteTransition,"CComponentTester_Complete_Transition"); sl@0: sl@0: inline CComponentTester_Complete_Transition::CComponentTester_Complete_Transition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KComponentTesterCompleteTransition, aUTContext, aValidator) sl@0: { sl@0: // Do nothing here. sl@0: } sl@0: sl@0: inline void CComponentTester_Complete_Transition::TransitMethodL() sl@0: { sl@0: _LIT(KComponentTesterCompleteTransitMethod, "CComponentTester::Complete transition"); sl@0: Context().DataLogger().LogInformation(KComponentTesterCompleteTransitMethod); sl@0: Context().iComponentTester->Complete(Context().iUnitTest); sl@0: } sl@0: sl@0: inline CComponentTester_UnitTestContext& CComponentTester_Complete_Transition::Context() const sl@0: { sl@0: return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: sl@0: // Add additional Transition class Implementations here... sl@0: