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 validation classes upon the CComponentTester class methods. sl@0: // sl@0: // sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_Ctor_TransitionValidator::TComponentTester_Ctor_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_Dtor_TransitionValidator::TComponentTester_Dtor_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_TransitionSets_TransitionValidator::TComponentTester_TransitionSets_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_AddUnitTest_TransitionValidator::TComponentTester_AddUnitTest_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_AddParamUnitTest_TransitionValidator::TComponentTester_AddParamUnitTest_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_TestComponent_TransitionValidator::TComponentTester_TestComponent_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_Run_TransitionValidator::TComponentTester_Run_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_Run_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_Run_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: inline TComponentTester_Complete_TransitionValidator::TComponentTester_Complete_TransitionValidator(CUnitTestContext& aUTContext) sl@0: :TTransitionValidator(aUTContext) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: inline TBool TComponentTester_Complete_TransitionValidator::ValidatePreConditions() sl@0: { sl@0: // Implement the correct pre-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.") sl@0: // For a c'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: } sl@0: sl@0: inline TBool TComponentTester_Complete_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */) sl@0: { sl@0: // Implement the correct post-condition test for this unit test transition. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.") sl@0: // For a d'tor this should be empty. sl@0: if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester)) sl@0: return EFalse; sl@0: return ETrue; sl@0: }