os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitionValidation.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 CTestManager class methods.
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TTestManager_Ctor_TransitionValidator::TTestManager_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TTestManager_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TTestManager_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TTestManager_Dtor_TransitionValidator::TTestManager_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TTestManager_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TTestManager_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TTestManager_RunTests_TransitionValidator::TTestManager_RunTests_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TTestManager_RunTests_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    69 		return EFalse;
    70 	return ETrue;
    71 	}
    72 
    73 inline TBool TTestManager_RunTests_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    74 	{
    75 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    76 		return EFalse;
    77 	return ETrue;
    78 	}
    79 
    80 // ______________________________________________________________________________
    81 //
    82 inline TTestManager_TestComponent_TransitionValidator::TTestManager_TestComponent_TransitionValidator(CUnitTestContext& aUTContext)
    83 :TTransitionValidator(aUTContext)
    84 	{
    85 	// Do nothing
    86 	}
    87 
    88 inline TBool TTestManager_TestComponent_TransitionValidator::ValidatePreConditions()
    89 	{
    90 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    91 		return EFalse;
    92 	return ETrue;
    93 	}
    94 
    95 inline TBool TTestManager_TestComponent_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    96 	{
    97 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext).iTestManager))
    98 		return EFalse;
    99 	return ETrue;
   100 	}