os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/StringPoolTransitionValidation.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/StringPoolTransitionValidation.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,130 @@
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 definitions of the transition classes upon the RStringPool class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __STRINGPOOLTRANSITIONVALIDATION_H__
1.22 +#define __STRINGPOOLTRANSITIONVALIDATION_H__
1.23 +
1.24 +#include "StringPoolTransitions.h"
1.25 +
1.26 +// ______________________________________________________________________________
1.27 +//
1.28 +/**
1.29 + @internalComponent
1.30 + Comments : Provide all the TrueUnit Test's specific
1.31 + validatation for the state of a transition before and after its execution.
1.32 + on the RStringPool test class for a transition.
1.33 + */
1.34 +class TStringPool_True_TransitionValidator : public TTransitionValidator
1.35 + {
1.36 +public:
1.37 + /**
1.38 + @fn TStringPool_True_TransitionValidator(CUnitTestContext& aUTContext)
1.39 + Intended Usage :
1.40 + @leave KErrNoMemory
1.41 + @since 6.0
1.42 + @param aUTContext The context within which this transition is executing
1.43 + */
1.44 + inline TStringPool_True_TransitionValidator(CUnitTestContext& aUTContext);
1.45 +
1.46 + /**
1.47 + @fn ValidatePreConditions()
1.48 + Intended Usage : Implemented by the developer to check the
1.49 + end state of the transition behaviour.
1.50 + Error Condition : Invalid pre-conditions
1.51 + @since 6.0
1.52 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.53 + @pre TStringPool_True_TransitionValidator is fully constructed.
1.54 + @post No change to the iUTContext class.
1.55 + */
1.56 + virtual inline TBool ValidatePreConditions();
1.57 +
1.58 + /**
1.59 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.60 + Intended Usage : Implemented by the developer to check the
1.61 + end state of the transition behaviour.
1.62 + When overriding, if the transition calls an asynchronous function
1.63 + ValidatePostConditions will be called twice. Firstly, after the
1.64 + asynchronous function has been called and, secondly, after the
1.65 + asynchronous request has completed. The parameter aAsyncState can
1.66 + be used to distinguish between these two cases.
1.67 + Error Condition : Invalid post-conditions.
1.68 + @since 6.0
1.69 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.70 + EAsyncCompleted if the function has completed.
1.71 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.72 + @pre TStringPool_True_TransitionValidator is fully constructed.
1.73 + @post No change to the iUTContext class.
1.74 + */
1.75 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.76 + }; // TStringPool_True_TransitionValidator
1.77 +
1.78 +// ______________________________________________________________________________
1.79 +//
1.80 +/**
1.81 + @internalComponent
1.82 + Comments : Provide all the FalseUnit Test's specific
1.83 + validatation for the state of a transition before and after its execution.
1.84 + on the RStringPool test class for a transition.
1.85 + */
1.86 +class TStringPool_False_TransitionValidator : public TTransitionValidator
1.87 + {
1.88 +public:
1.89 + /**
1.90 + @fn TStringPool_False_TransitionValidator(CUnitTestContext& aUTContext)
1.91 + Intended Usage :
1.92 + @leave KErrNoMemory
1.93 + @since 6.0
1.94 + @param aUTContext The context within which this transition is executing
1.95 + */
1.96 + inline TStringPool_False_TransitionValidator(CUnitTestContext& aUTContext);
1.97 +
1.98 + /**
1.99 + @fn ValidatePreConditions()
1.100 + Intended Usage : Implemented by the developer to check the
1.101 + end state of the transition behaviour.
1.102 + Error Condition : Invalid pre-conditions
1.103 + @since 6.0
1.104 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.105 + @pre TStringPool_False_TransitionValidator is fully constructed.
1.106 + @post No change to the iUTContext class.
1.107 + */
1.108 + virtual inline TBool ValidatePreConditions();
1.109 +
1.110 + /**
1.111 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.112 + Intended Usage : Implemented by the developer to check the
1.113 + end state of the transition behaviour.
1.114 + When overriding, if the transition calls an asynchronous function
1.115 + ValidatePostConditions will be called twice. Firstly, after the
1.116 + asynchronous function has been called and, secondly, after the
1.117 + asynchronous request has completed. The parameter aAsyncState can
1.118 + be used to distinguish between these two cases.
1.119 + Error Condition : Invalid post-conditions.
1.120 + @since 6.0
1.121 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.122 + EAsyncCompleted if the function has completed.
1.123 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.124 + @pre TStringPool_False_TransitionValidator is fully constructed.
1.125 + @post No change to the iUTContext class.
1.126 + */
1.127 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.128 + }; // TStringPool_False_TransitionValidator
1.129 +
1.130 +#include "StringPoolTransitionValidation.inl"
1.131 +
1.132 +#endif // __STRINGPOOLTRANSITIONVALIDATION_H__
1.133 +