os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitionValidation.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitionValidation.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,224 @@
     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 validation classes upon the CComponentTester class methods.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +// ______________________________________________________________________________
    1.22 +//
    1.23 +inline TComponentTester_Ctor_TransitionValidator::TComponentTester_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    1.24 +:TTransitionValidator(aUTContext)
    1.25 +	{
    1.26 +	// Do nothing
    1.27 +	}
    1.28 +
    1.29 +inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePreConditions()
    1.30 +	{
    1.31 +	return ETrue;
    1.32 +	}
    1.33 +
    1.34 +inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.35 +	{
    1.36 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    1.37 +		return EFalse;
    1.38 +	return ETrue;
    1.39 +	}
    1.40 +
    1.41 +// ______________________________________________________________________________
    1.42 +//
    1.43 +inline TComponentTester_Dtor_TransitionValidator::TComponentTester_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    1.44 +:TTransitionValidator(aUTContext)
    1.45 +	{
    1.46 +	// Do nothing
    1.47 +	}
    1.48 +
    1.49 +inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePreConditions()
    1.50 +	{
    1.51 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    1.52 +		return EFalse;
    1.53 +	return ETrue;
    1.54 +	}
    1.55 +
    1.56 +inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.57 +	{
    1.58 +	return ETrue;
    1.59 +	}
    1.60 +
    1.61 +// ______________________________________________________________________________
    1.62 +//
    1.63 +inline TComponentTester_TransitionSets_TransitionValidator::TComponentTester_TransitionSets_TransitionValidator(CUnitTestContext& aUTContext)
    1.64 +:TTransitionValidator(aUTContext)
    1.65 +	{
    1.66 +	// Do nothing
    1.67 +	}
    1.68 +
    1.69 +inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePreConditions()
    1.70 +	{
    1.71 +	// Implement the correct pre-condition test for this unit test transition.
    1.72 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
    1.73 +	// For a c'tor this should be empty.
    1.74 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    1.75 +		return EFalse;
    1.76 +	return ETrue;
    1.77 +	}
    1.78 +
    1.79 +inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.80 +	{
    1.81 +	// Implement the correct post-condition test for this unit test transition.
    1.82 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
    1.83 +	// For a d'tor this should be empty.
    1.84 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    1.85 +		return EFalse;
    1.86 +	return ETrue;
    1.87 +	}
    1.88 +
    1.89 +// ______________________________________________________________________________
    1.90 +//
    1.91 +inline TComponentTester_AddUnitTest_TransitionValidator::TComponentTester_AddUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
    1.92 +:TTransitionValidator(aUTContext)
    1.93 +	{
    1.94 +	// Do nothing
    1.95 +	}
    1.96 +
    1.97 +inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePreConditions()
    1.98 +	{
    1.99 +	// Implement the correct pre-condition test for this unit test transition.
   1.100 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   1.101 +	// For a c'tor this should be empty.
   1.102 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.103 +		return EFalse;
   1.104 +	return ETrue;
   1.105 +	}
   1.106 +
   1.107 +inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.108 +	{
   1.109 +	// Implement the correct post-condition test for this unit test transition.
   1.110 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   1.111 +	// For a d'tor this should be empty.
   1.112 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.113 +		return EFalse;
   1.114 +	return ETrue;
   1.115 +	}
   1.116 +
   1.117 +// ______________________________________________________________________________
   1.118 +//
   1.119 +inline TComponentTester_AddParamUnitTest_TransitionValidator::TComponentTester_AddParamUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
   1.120 +:TTransitionValidator(aUTContext)
   1.121 +	{
   1.122 +	// Do nothing
   1.123 +	}
   1.124 +
   1.125 +inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePreConditions()
   1.126 +	{
   1.127 +	// Implement the correct pre-condition test for this unit test transition.
   1.128 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   1.129 +	// For a c'tor this should be empty.
   1.130 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.131 +		return EFalse;
   1.132 +	return ETrue;
   1.133 +	}
   1.134 +
   1.135 +inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.136 +	{
   1.137 +	// Implement the correct post-condition test for this unit test transition.
   1.138 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   1.139 +	// For a d'tor this should be empty.
   1.140 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.141 +		return EFalse;
   1.142 +	return ETrue;
   1.143 +	}
   1.144 +
   1.145 +// ______________________________________________________________________________
   1.146 +//
   1.147 +inline TComponentTester_TestComponent_TransitionValidator::TComponentTester_TestComponent_TransitionValidator(CUnitTestContext& aUTContext)
   1.148 +:TTransitionValidator(aUTContext)
   1.149 +	{
   1.150 +	// Do nothing
   1.151 +	}
   1.152 +
   1.153 +inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePreConditions()
   1.154 +	{
   1.155 +	// Implement the correct pre-condition test for this unit test transition.
   1.156 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   1.157 +	// For a c'tor this should be empty.
   1.158 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.159 +		return EFalse;
   1.160 +	return ETrue;
   1.161 +	}
   1.162 +
   1.163 +inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.164 +	{
   1.165 +	// Implement the correct post-condition test for this unit test transition.
   1.166 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   1.167 +	// For a d'tor this should be empty.
   1.168 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.169 +		return EFalse;
   1.170 +	return ETrue;
   1.171 +	}
   1.172 +
   1.173 +// ______________________________________________________________________________
   1.174 +//
   1.175 +inline TComponentTester_Run_TransitionValidator::TComponentTester_Run_TransitionValidator(CUnitTestContext& aUTContext)
   1.176 +:TTransitionValidator(aUTContext)
   1.177 +	{
   1.178 +	// Do nothing
   1.179 +	}
   1.180 +
   1.181 +inline TBool TComponentTester_Run_TransitionValidator::ValidatePreConditions()
   1.182 +	{
   1.183 +	// Implement the correct pre-condition test for this unit test transition.
   1.184 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   1.185 +	// For a c'tor this should be empty.
   1.186 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.187 +		return EFalse;
   1.188 +	return ETrue;
   1.189 +	}
   1.190 +
   1.191 +inline TBool TComponentTester_Run_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.192 +	{
   1.193 +	// Implement the correct post-condition test for this unit test transition.
   1.194 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   1.195 +	// For a d'tor this should be empty.
   1.196 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.197 +		return EFalse;
   1.198 +	return ETrue;
   1.199 +	}
   1.200 +
   1.201 +// ______________________________________________________________________________
   1.202 +//
   1.203 +inline TComponentTester_Complete_TransitionValidator::TComponentTester_Complete_TransitionValidator(CUnitTestContext& aUTContext)
   1.204 +:TTransitionValidator(aUTContext)
   1.205 +	{
   1.206 +	// Do nothing
   1.207 +	}
   1.208 +
   1.209 +inline TBool TComponentTester_Complete_TransitionValidator::ValidatePreConditions()
   1.210 +	{
   1.211 +	// Implement the correct pre-condition test for this unit test transition.
   1.212 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   1.213 +	// For a c'tor this should be empty.
   1.214 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.215 +		return EFalse;
   1.216 +	return ETrue;
   1.217 +	}
   1.218 +
   1.219 +inline TBool TComponentTester_Complete_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.220 +	{
   1.221 +	// Implement the correct post-condition test for this unit test transition.
   1.222 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   1.223 +	// For a d'tor this should be empty.
   1.224 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   1.225 +		return EFalse;
   1.226 +	return ETrue;
   1.227 +	}