os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitionValidation.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of the transition validation classes upon the CComponentTester class methods.
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TComponentTester_Ctor_TransitionValidator::TComponentTester_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TComponentTester_Dtor_TransitionValidator::TComponentTester_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TComponentTester_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TComponentTester_TransitionSets_TransitionValidator::TComponentTester_TransitionSets_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	// Implement the correct pre-condition test for this unit test transition.
    69 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
    70 	// For a c'tor this should be empty.
    71 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    72 		return EFalse;
    73 	return ETrue;
    74 	}
    75 
    76 inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    77 	{
    78 	// Implement the correct post-condition test for this unit test transition.
    79 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
    80 	// For a d'tor this should be empty.
    81 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
    82 		return EFalse;
    83 	return ETrue;
    84 	}
    85 
    86 // ______________________________________________________________________________
    87 //
    88 inline TComponentTester_AddUnitTest_TransitionValidator::TComponentTester_AddUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
    89 :TTransitionValidator(aUTContext)
    90 	{
    91 	// Do nothing
    92 	}
    93 
    94 inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePreConditions()
    95 	{
    96 	// Implement the correct pre-condition test for this unit test transition.
    97 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
    98 	// For a c'tor this should be empty.
    99 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   100 		return EFalse;
   101 	return ETrue;
   102 	}
   103 
   104 inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   105 	{
   106 	// Implement the correct post-condition test for this unit test transition.
   107 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   108 	// For a d'tor this should be empty.
   109 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   110 		return EFalse;
   111 	return ETrue;
   112 	}
   113 
   114 // ______________________________________________________________________________
   115 //
   116 inline TComponentTester_AddParamUnitTest_TransitionValidator::TComponentTester_AddParamUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
   117 :TTransitionValidator(aUTContext)
   118 	{
   119 	// Do nothing
   120 	}
   121 
   122 inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePreConditions()
   123 	{
   124 	// Implement the correct pre-condition test for this unit test transition.
   125 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   126 	// For a c'tor this should be empty.
   127 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   128 		return EFalse;
   129 	return ETrue;
   130 	}
   131 
   132 inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   133 	{
   134 	// Implement the correct post-condition test for this unit test transition.
   135 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   136 	// For a d'tor this should be empty.
   137 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   138 		return EFalse;
   139 	return ETrue;
   140 	}
   141 
   142 // ______________________________________________________________________________
   143 //
   144 inline TComponentTester_TestComponent_TransitionValidator::TComponentTester_TestComponent_TransitionValidator(CUnitTestContext& aUTContext)
   145 :TTransitionValidator(aUTContext)
   146 	{
   147 	// Do nothing
   148 	}
   149 
   150 inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePreConditions()
   151 	{
   152 	// Implement the correct pre-condition test for this unit test transition.
   153 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   154 	// For a c'tor this should be empty.
   155 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   156 		return EFalse;
   157 	return ETrue;
   158 	}
   159 
   160 inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   161 	{
   162 	// Implement the correct post-condition test for this unit test transition.
   163 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   164 	// For a d'tor this should be empty.
   165 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   166 		return EFalse;
   167 	return ETrue;
   168 	}
   169 
   170 // ______________________________________________________________________________
   171 //
   172 inline TComponentTester_Run_TransitionValidator::TComponentTester_Run_TransitionValidator(CUnitTestContext& aUTContext)
   173 :TTransitionValidator(aUTContext)
   174 	{
   175 	// Do nothing
   176 	}
   177 
   178 inline TBool TComponentTester_Run_TransitionValidator::ValidatePreConditions()
   179 	{
   180 	// Implement the correct pre-condition test for this unit test transition.
   181 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   182 	// For a c'tor this should be empty.
   183 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   184 		return EFalse;
   185 	return ETrue;
   186 	}
   187 
   188 inline TBool TComponentTester_Run_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   189 	{
   190 	// Implement the correct post-condition test for this unit test transition.
   191 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   192 	// For a d'tor this should be empty.
   193 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   194 		return EFalse;
   195 	return ETrue;
   196 	}
   197 
   198 // ______________________________________________________________________________
   199 //
   200 inline TComponentTester_Complete_TransitionValidator::TComponentTester_Complete_TransitionValidator(CUnitTestContext& aUTContext)
   201 :TTransitionValidator(aUTContext)
   202 	{
   203 	// Do nothing
   204 	}
   205 
   206 inline TBool TComponentTester_Complete_TransitionValidator::ValidatePreConditions()
   207 	{
   208 	// Implement the correct pre-condition test for this unit test transition.
   209 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   210 	// For a c'tor this should be empty.
   211 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   212 		return EFalse;
   213 	return ETrue;
   214 	}
   215 
   216 inline TBool TComponentTester_Complete_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   217 	{
   218 	// Implement the correct post-condition test for this unit test transition.
   219 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   220 	// For a d'tor this should be empty.
   221 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
   222 		return EFalse;
   223 	return ETrue;
   224 	}