os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideTransitionValidation.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 // Implementations for the transition validation classes for ECOM
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TSuicideInterface_Ctor_TransitionValidator::TSuicideInterface_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TSuicideInterface_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TSuicideInterface_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext).iExampleInterface))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TSuicideInterface_Dtor_TransitionValidator::TSuicideInterface_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TSuicideInterface_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext).iExampleInterface))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TSuicideInterface_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TSuicideInterface_FireAndForget_TransitionValidator::TSuicideInterface_FireAndForget_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TSuicideInterface_FireAndForget_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	// For a c'tor this should be empty.
    69 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext).iExampleInterface))
    70 		return EFalse;
    71 	return ETrue;
    72 	}
    73 
    74 inline TBool TSuicideInterface_FireAndForget_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    75 	{
    76 	// For a d'tor this should be empty.
    77 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext).iExampleInterface))
    78 		return EFalse;
    79 	return ETrue;
    80 	}