os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitionValidation.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2001-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 CTestController class methods.
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TTestController_Ctor_TransitionValidator::TTestController_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TTestController_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TTestController_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TTestController_Dtor_TransitionValidator::TTestController_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TTestController_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TTestController_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TTestController_ScanDrive_TransitionValidator::TTestController_ScanDrive_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TTestController_ScanDrive_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    69 		return EFalse;
    70 	return ETrue;
    71 	}
    72 
    73 inline TBool TTestController_ScanDrive_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    74 	{
    75 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    76 		return EFalse;
    77 	return ETrue;
    78 	}
    79 
    80 // ______________________________________________________________________________
    81 //
    82 inline TTestController_DiscoverTests_TransitionValidator::TTestController_DiscoverTests_TransitionValidator(CUnitTestContext& aUTContext)
    83 :TTransitionValidator(aUTContext)
    84 	{
    85 	// Do nothing
    86 	}
    87 
    88 inline TBool TTestController_DiscoverTests_TransitionValidator::ValidatePreConditions()
    89 	{
    90 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    91 		return EFalse;
    92 	return ETrue;
    93 	}
    94 
    95 inline TBool TTestController_DiscoverTests_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    96 	{
    97 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
    98 		return EFalse;
    99 	return ETrue;
   100 	}
   101 
   102 // ______________________________________________________________________________
   103 //
   104 inline TTestController_FindComponents_TransitionValidator::TTestController_FindComponents_TransitionValidator(CUnitTestContext& aUTContext)
   105 :TTransitionValidator(aUTContext)
   106 	{
   107 	// Do nothing
   108 	}
   109 
   110 inline TBool TTestController_FindComponents_TransitionValidator::ValidatePreConditions()
   111 	{
   112 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   113 		return EFalse;
   114 	return ETrue;
   115 	}
   116 
   117 inline TBool TTestController_FindComponents_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   118 	{
   119 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   120 		return EFalse;
   121 	return ETrue;
   122 	}
   123 
   124 // ______________________________________________________________________________
   125 //
   126 inline TTestController_GetUnitTests_TransitionValidator::TTestController_GetUnitTests_TransitionValidator(CUnitTestContext& aUTContext)
   127 :TTransitionValidator(aUTContext)
   128 	{
   129 	// Do nothing
   130 	}
   131 
   132 inline TBool TTestController_GetUnitTests_TransitionValidator::ValidatePreConditions()
   133 	{
   134 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   135 		return EFalse;
   136 	return ETrue;
   137 	}
   138 
   139 inline TBool TTestController_GetUnitTests_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   140 	{
   141 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   142 		return EFalse;
   143 	return ETrue;
   144 	}
   145 
   146 // ______________________________________________________________________________
   147 //
   148 inline TTestController_Start_TransitionValidator::TTestController_Start_TransitionValidator(CUnitTestContext& aUTContext)
   149 :TTransitionValidator(aUTContext)
   150 	{
   151 	// Do nothing
   152 	}
   153 
   154 inline TBool TTestController_Start_TransitionValidator::ValidatePreConditions()
   155 	{
   156 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   157 		return EFalse;
   158 	return ETrue;
   159 	}
   160 
   161 inline TBool TTestController_Start_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   162 	{
   163 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext).iTestController))
   164 		return EFalse;
   165 	return ETrue;
   166 	}
   167 
   168 
   169