os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/StringPoolTransitionValidation.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The definitions of the transition classes upon the RStringPool class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __STRINGPOOLTRANSITIONVALIDATION_H__
sl@0
    19
#define __STRINGPOOLTRANSITIONVALIDATION_H__
sl@0
    20
sl@0
    21
#include "StringPoolTransitions.h"
sl@0
    22
sl@0
    23
// ______________________________________________________________________________
sl@0
    24
//
sl@0
    25
/**
sl@0
    26
	@internalComponent
sl@0
    27
	Comments : Provide all the TrueUnit Test's specific
sl@0
    28
	validatation for the state of a transition before and after its execution.
sl@0
    29
	on the RStringPool test class for a transition.
sl@0
    30
 */
sl@0
    31
class TStringPool_True_TransitionValidator : public TTransitionValidator
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	/**
sl@0
    35
		@fn				TStringPool_True_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    36
		Intended Usage	:	
sl@0
    37
		@leave		KErrNoMemory
sl@0
    38
		@since			6.0
sl@0
    39
		@param			aUTContext The context within which this transition is executing
sl@0
    40
	 */
sl@0
    41
	inline TStringPool_True_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    42
sl@0
    43
	/**
sl@0
    44
		@fn				ValidatePreConditions()
sl@0
    45
		Intended Usage	: Implemented by the developer to check the
sl@0
    46
						end state of the transition behaviour.
sl@0
    47
		Error Condition	: Invalid pre-conditions
sl@0
    48
		@since			6.0
sl@0
    49
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
    50
		@pre 			TStringPool_True_TransitionValidator is fully constructed.
sl@0
    51
		@post			No change to the iUTContext class.
sl@0
    52
	*/
sl@0
    53
	virtual inline TBool ValidatePreConditions();
sl@0
    54
sl@0
    55
	/**
sl@0
    56
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
    57
		Intended Usage	:	Implemented by the developer to check the
sl@0
    58
						end state of the transition behaviour.
sl@0
    59
						When overriding, if the transition calls an asynchronous function
sl@0
    60
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
    61
						asynchronous function has been called and, secondly, after the 
sl@0
    62
						asynchronous request has completed. The parameter aAsyncState can
sl@0
    63
						be used to distinguish between these two cases.
sl@0
    64
		Error Condition	: Invalid post-conditions.
sl@0
    65
		@since			6.0
sl@0
    66
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
    67
						EAsyncCompleted if the function has completed.
sl@0
    68
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
    69
		@pre 			TStringPool_True_TransitionValidator is fully constructed.
sl@0
    70
		@post			No change to the iUTContext class.
sl@0
    71
	*/
sl@0
    72
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
    73
	};	// TStringPool_True_TransitionValidator
sl@0
    74
sl@0
    75
// ______________________________________________________________________________
sl@0
    76
//
sl@0
    77
/**
sl@0
    78
	@internalComponent
sl@0
    79
	Comments : Provide all the FalseUnit Test's specific
sl@0
    80
	validatation for the state of a transition before and after its execution.
sl@0
    81
	on the RStringPool test class for a transition.
sl@0
    82
 */
sl@0
    83
class TStringPool_False_TransitionValidator : public TTransitionValidator
sl@0
    84
	{
sl@0
    85
public:
sl@0
    86
	/**
sl@0
    87
		@fn				TStringPool_False_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    88
		Intended Usage	:	
sl@0
    89
		@leave		KErrNoMemory
sl@0
    90
		@since			6.0
sl@0
    91
		@param			aUTContext The context within which this transition is executing
sl@0
    92
	 */
sl@0
    93
	inline TStringPool_False_TransitionValidator(CUnitTestContext& aUTContext);
sl@0
    94
sl@0
    95
	/**
sl@0
    96
		@fn				ValidatePreConditions()
sl@0
    97
		Intended Usage	: Implemented by the developer to check the
sl@0
    98
						end state of the transition behaviour.
sl@0
    99
		Error Condition	: Invalid pre-conditions
sl@0
   100
		@since			6.0
sl@0
   101
		@return			TBool ETrue if the pre-conditions were valid, EFalse otherwise.
sl@0
   102
		@pre 			TStringPool_False_TransitionValidator is fully constructed.
sl@0
   103
		@post			No change to the iUTContext class.
sl@0
   104
	*/
sl@0
   105
	virtual inline TBool ValidatePreConditions();
sl@0
   106
sl@0
   107
	/**
sl@0
   108
		@fn				ValidatePostConditions(TTestBedAsyncState aAsyncState)
sl@0
   109
		Intended Usage	:	Implemented by the developer to check the
sl@0
   110
						end state of the transition behaviour.
sl@0
   111
						When overriding, if the transition calls an asynchronous function
sl@0
   112
						ValidatePostConditions will be called twice. Firstly, after the
sl@0
   113
						asynchronous function has been called and, secondly, after the 
sl@0
   114
						asynchronous request has completed. The parameter aAsyncState can
sl@0
   115
						be used to distinguish between these two cases.
sl@0
   116
		Error Condition	: Invalid post-conditions.
sl@0
   117
		@since			6.0
sl@0
   118
		@param			aAsyncState EAsyncCalled if the async function has been just been called,
sl@0
   119
						EAsyncCompleted if the function has completed.
sl@0
   120
		@return			TBool ETrue if the post-conditions were valid, EFalse otherwise.
sl@0
   121
		@pre 			TStringPool_False_TransitionValidator is fully constructed.
sl@0
   122
		@post			No change to the iUTContext class.
sl@0
   123
	*/
sl@0
   124
	virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
sl@0
   125
	};	// TStringPool_False_TransitionValidator
sl@0
   126
sl@0
   127
#include "StringPoolTransitionValidation.inl"
sl@0
   128
sl@0
   129
#endif // __STRINGPOOLTRANSITIONVALIDATION_H__
sl@0
   130