os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitionValidation.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/DataLoggerTest/DataLoggerTransitionValidation.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,211 @@
     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 CDataLogger class methods.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +// ______________________________________________________________________________
    1.22 +//
    1.23 +inline TDataLogger_Ctor_TransitionValidator::TDataLogger_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    1.24 +:TTransitionValidator(aUTContext)
    1.25 +	{
    1.26 +	// Do nothing
    1.27 +	}
    1.28 +
    1.29 +inline TBool TDataLogger_Ctor_TransitionValidator::ValidatePreConditions()
    1.30 +	{
    1.31 +	return ETrue;
    1.32 +	}
    1.33 +
    1.34 +inline TBool TDataLogger_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.35 +	{
    1.36 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
    1.37 +		return EFalse;
    1.38 +	return ETrue;
    1.39 +	}
    1.40 +
    1.41 +// ______________________________________________________________________________
    1.42 +//
    1.43 +inline TDataLogger_Dtor_TransitionValidator::TDataLogger_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    1.44 +:TTransitionValidator(aUTContext)
    1.45 +	{
    1.46 +	// Do nothing
    1.47 +	}
    1.48 +
    1.49 +inline TBool TDataLogger_Dtor_TransitionValidator::ValidatePreConditions()
    1.50 +	{
    1.51 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
    1.52 +		return EFalse;
    1.53 +	return ETrue;
    1.54 +	}
    1.55 +
    1.56 +inline TBool TDataLogger_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.57 +	{
    1.58 +	return ETrue;
    1.59 +	}
    1.60 +
    1.61 +// ______________________________________________________________________________
    1.62 +//
    1.63 +inline TDataLogger_DumpMemoryBlock_TransitionValidator::TDataLogger_DumpMemoryBlock_TransitionValidator(CUnitTestContext& aUTContext)
    1.64 +:TTransitionValidator(aUTContext)
    1.65 +	{
    1.66 +	// Do nothing
    1.67 +	}
    1.68 +
    1.69 +inline TBool TDataLogger_DumpMemoryBlock_TransitionValidator::ValidatePreConditions()
    1.70 +	{
    1.71 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
    1.72 +		return EFalse;
    1.73 +	return ETrue;
    1.74 +	}
    1.75 +
    1.76 +inline TBool TDataLogger_DumpMemoryBlock_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.77 +	{
    1.78 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
    1.79 +		return EFalse;
    1.80 +	return ETrue;
    1.81 +	}
    1.82 +
    1.83 +// ______________________________________________________________________________
    1.84 +//
    1.85 +inline TDataLogger_LogInformation_TransitionValidator::TDataLogger_LogInformation_TransitionValidator(CUnitTestContext& aUTContext)
    1.86 +:TTransitionValidator(aUTContext)
    1.87 +	{
    1.88 +	// Do nothing
    1.89 +	}
    1.90 +
    1.91 +inline TBool TDataLogger_LogInformation_TransitionValidator::ValidatePreConditions()
    1.92 +	{
    1.93 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
    1.94 +		return EFalse;
    1.95 +	return ETrue;
    1.96 +	}
    1.97 +
    1.98 +inline TBool TDataLogger_LogInformation_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    1.99 +	{
   1.100 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.101 +		return EFalse;
   1.102 +	return ETrue;
   1.103 +	}
   1.104 +
   1.105 +// ______________________________________________________________________________
   1.106 +//
   1.107 +inline TDataLogger_LogInformationNarrow_TransitionValidator::TDataLogger_LogInformationNarrow_TransitionValidator(CUnitTestContext& aUTContext)
   1.108 +:TTransitionValidator(aUTContext)
   1.109 +	{
   1.110 +	// Do nothing
   1.111 +	}
   1.112 +
   1.113 +inline TBool TDataLogger_LogInformationNarrow_TransitionValidator::ValidatePreConditions()
   1.114 +	{
   1.115 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.116 +		return EFalse;
   1.117 +	return ETrue;
   1.118 +	}
   1.119 +
   1.120 +inline TBool TDataLogger_LogInformationNarrow_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.121 +	{
   1.122 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.123 +		return EFalse;
   1.124 +	return ETrue;
   1.125 +	}
   1.126 +
   1.127 +// ______________________________________________________________________________
   1.128 +//
   1.129 +inline TDataLogger_LogInformationWithParameters_TransitionValidator::TDataLogger_LogInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext)
   1.130 +:TTransitionValidator(aUTContext)
   1.131 +	{
   1.132 +	// Do nothing
   1.133 +	}
   1.134 +
   1.135 +inline TBool TDataLogger_LogInformationWithParameters_TransitionValidator::ValidatePreConditions()
   1.136 +	{
   1.137 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.138 +		return EFalse;
   1.139 +	return ETrue;
   1.140 +	}
   1.141 +
   1.142 +inline TBool TDataLogger_LogInformationWithParameters_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.143 +	{
   1.144 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.145 +		return EFalse;
   1.146 +	return ETrue;
   1.147 +	}
   1.148 +
   1.149 +// ______________________________________________________________________________
   1.150 +//
   1.151 +inline TDataLogger_LogInformationWithParametersNarrow_TransitionValidator::TDataLogger_LogInformationWithParametersNarrow_TransitionValidator(CUnitTestContext& aUTContext)
   1.152 +:TTransitionValidator(aUTContext)
   1.153 +	{
   1.154 +	// Do nothing
   1.155 +	}
   1.156 +
   1.157 +inline TBool TDataLogger_LogInformationWithParametersNarrow_TransitionValidator::ValidatePreConditions()
   1.158 +	{
   1.159 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.160 +		return EFalse;
   1.161 +	return ETrue;
   1.162 +	}
   1.163 +
   1.164 +inline TBool TDataLogger_LogInformationWithParametersNarrow_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.165 +	{
   1.166 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.167 +		return EFalse;
   1.168 +	return ETrue;
   1.169 +	}
   1.170 +
   1.171 +// ______________________________________________________________________________
   1.172 +//
   1.173 +inline TDataLogger_ReportInformation_TransitionValidator::TDataLogger_ReportInformation_TransitionValidator(CUnitTestContext& aUTContext)
   1.174 +:TTransitionValidator(aUTContext)
   1.175 +	{
   1.176 +	// Do nothing
   1.177 +	}
   1.178 +
   1.179 +inline TBool TDataLogger_ReportInformation_TransitionValidator::ValidatePreConditions()
   1.180 +	{
   1.181 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.182 +		return EFalse;
   1.183 +	return ETrue;
   1.184 +	}
   1.185 +
   1.186 +inline TBool TDataLogger_ReportInformation_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.187 +	{
   1.188 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.189 +		return EFalse;
   1.190 +	return ETrue;
   1.191 +	}
   1.192 +
   1.193 +// ______________________________________________________________________________
   1.194 +//
   1.195 +inline TDataLogger_ReportInformationWithParameters_TransitionValidator::TDataLogger_ReportInformationWithParameters_TransitionValidator(CUnitTestContext& aUTContext)
   1.196 +:TTransitionValidator(aUTContext)
   1.197 +	{
   1.198 +	// Do nothing
   1.199 +	}
   1.200 +
   1.201 +inline TBool TDataLogger_ReportInformationWithParameters_TransitionValidator::ValidatePreConditions()
   1.202 +	{
   1.203 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.204 +		return EFalse;
   1.205 +	return ETrue;
   1.206 +	}
   1.207 +
   1.208 +inline TBool TDataLogger_ReportInformationWithParameters_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   1.209 +	{
   1.210 +	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDataLogger_UnitTestContext&,iUTContext).iDataLogger))
   1.211 +		return EFalse;
   1.212 +	return ETrue;
   1.213 +	}
   1.214 +