os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionTransitionValidation.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionTransitionValidation.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,664 @@
1.4 +// Copyright (c) 2001-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 CTransition class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __TRANSITIONTRANSITIONVALIDATION_H__
1.22 +#define __TRANSITIONTRANSITIONVALIDATION_H__
1.23 +
1.24 +#include "TransitionTransitions.h"
1.25 +
1.26 +// ______________________________________________________________________________
1.27 +//
1.28 +/**
1.29 + @internalComponent
1.30 +
1.31 + Comments : Provide all the CtorUnit Test's specific
1.32 + validatation for the state of a transition before and after its execution.
1.33 + on the CTransition test class for a transition.
1.34 + */
1.35 +class TTransition_Ctor_TransitionValidator : public TTransitionValidator
1.36 + {
1.37 +public:
1.38 + /**
1.39 + @fn TTransition_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
1.40 + Intended Usage :
1.41 + @leave KErrNoMemory
1.42 + @since 7.0
1.43 + @param aUTContext The context within which this transition is executing
1.44 + */
1.45 + inline TTransition_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
1.46 +
1.47 + /**
1.48 + @fn ValidatePreConditions()
1.49 + Intended Usage : Implemented by the developer to check the
1.50 + end state of the transition behaviour.
1.51 + Error Condition : Invalid pre-conditions
1.52 + @since 7.0
1.53 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.54 + @pre TTransition_Ctor_TransitionValidator is fully constructed.
1.55 + @post No change to the iUTContext class.
1.56 + */
1.57 + virtual inline TBool ValidatePreConditions();
1.58 +
1.59 + /**
1.60 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.61 + Intended Usage : Implemented by the developer to check the
1.62 + end state of the transition behaviour.
1.63 + When overriding, if the transition calls an asynchronous function
1.64 + ValidatePostConditions will be called twice. Firstly, after the
1.65 + asynchronous function has been called and, secondly, after the
1.66 + asynchronous request has completed. The parameter aAsyncState can
1.67 + be used to distinguish between these two cases.
1.68 + Error Condition : Invalid post-conditions.
1.69 + @since 7.0
1.70 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.71 + EAsyncCompleted if the function has completed.
1.72 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.73 + @pre TTransition_Ctor_TransitionValidator is fully constructed.
1.74 + @post No change to the iUTContext class.
1.75 + */
1.76 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.77 + }; // TTransition_Ctor_TransitionValidator
1.78 +
1.79 +// ______________________________________________________________________________
1.80 +//
1.81 +/**
1.82 + @internalComponent
1.83 +
1.84 + Comments : Provide all the DtorUnit Test's specific
1.85 + validatation for the state of a transition before and after its execution.
1.86 + on the CTransition test class for a transition.
1.87 + */
1.88 +class TTransition_Dtor_TransitionValidator : public TTransitionValidator
1.89 + {
1.90 +public:
1.91 + /**
1.92 + @fn TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
1.93 + Intended Usage :
1.94 + @leave KErrNoMemory
1.95 + @since 7.0
1.96 + @param aUTContext The context within which this transition is executing
1.97 + */
1.98 + inline TTransition_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
1.99 +
1.100 + /**
1.101 + @fn ValidatePreConditions()
1.102 + Intended Usage : Implemented by the developer to check the
1.103 + end state of the transition behaviour.
1.104 + Error Condition : Invalid pre-conditions
1.105 + @since 7.0
1.106 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.107 + @pre TTransition_Dtor_TransitionValidator is fully constructed.
1.108 + @post No change to the iUTContext class.
1.109 + */
1.110 + virtual inline TBool ValidatePreConditions();
1.111 +
1.112 + /**
1.113 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.114 + Intended Usage : Implemented by the developer to check the
1.115 + end state of the transition behaviour.
1.116 + When overriding, if the transition calls an asynchronous function
1.117 + ValidatePostConditions will be called twice. Firstly, after the
1.118 + asynchronous function has been called and, secondly, after the
1.119 + asynchronous request has completed. The parameter aAsyncState can
1.120 + be used to distinguish between these two cases.
1.121 + Error Condition : Invalid post-conditions.
1.122 + @since 7.0
1.123 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.124 + EAsyncCompleted if the function has completed.
1.125 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.126 + @pre TTransition_Dtor_TransitionValidator is fully constructed.
1.127 + @post No change to the iUTContext class.
1.128 + */
1.129 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.130 + }; // TTransition_Dtor_TransitionValidator
1.131 +
1.132 +// ______________________________________________________________________________
1.133 +//
1.134 +/**
1.135 + @internalComponent
1.136 +
1.137 + Comments : Provide all the TransitMethodL Unit Test's specific
1.138 + validatation for the state of a transition before and after its execution.
1.139 + on the CTransition test class for a transition.
1.140 + */
1.141 +class TTransition_TransitMethodL_TransitionValidator : public TTransitionValidator
1.142 + {
1.143 +public:
1.144 + /**
1.145 + @fn TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext)
1.146 + Intended Usage :
1.147 + @leave KErrNoMemory
1.148 + @since 7.0
1.149 + @param aUTContext The context within which this transition is executing
1.150 + */
1.151 + inline TTransition_TransitMethodL_TransitionValidator(CUnitTestContext& aUTContext);
1.152 +
1.153 + /**
1.154 + @fn ValidatePreConditions()
1.155 + Intended Usage : Implemented by the developer to check the
1.156 + end state of the transition behaviour.
1.157 + Error Condition : Invalid pre-conditions
1.158 + @since 7.0
1.159 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.160 + @pre TTransition_TransitMethodL_TransitionValidator is fully constructed.
1.161 + @post No change to the iUTContext class.
1.162 + */
1.163 + virtual inline TBool ValidatePreConditions();
1.164 +
1.165 + /**
1.166 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.167 + Intended Usage : Implemented by the developer to check the
1.168 + end state of the transition behaviour.
1.169 + When overriding, if the transition calls an asynchronous function
1.170 + ValidatePostConditions will be called twice. Firstly, after the
1.171 + asynchronous function has been called and, secondly, after the
1.172 + asynchronous request has completed. The parameter aAsyncState can
1.173 + be used to distinguish between these two cases.
1.174 + Error Condition : Invalid post-conditions.
1.175 + @since 7.0
1.176 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.177 + EAsyncCompleted if the function has completed.
1.178 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.179 + @pre TTransition_TransitMethodL_TransitionValidator is fully constructed.
1.180 + @post No change to the iUTContext class.
1.181 + */
1.182 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.183 + }; // TTransition_TransitMethodL_TransitionValidator
1.184 +
1.185 +// ______________________________________________________________________________
1.186 +//
1.187 +/**
1.188 + @internalComponent
1.189 +
1.190 + Comments : Provide all the RepeatOnce Unit Test's specific
1.191 + validatation for the state of a transition before and after its execution.
1.192 + on the CTransition test class for a transition.
1.193 + */
1.194 +class TTransition_RepeatOnce_TransitionValidator : public TTransitionValidator
1.195 + {
1.196 +public:
1.197 + /**
1.198 + @fn TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext)
1.199 + Intended Usage :
1.200 + @leave KErrNoMemory
1.201 + @since 7.0
1.202 + @param aUTContext The context within which this transition is executing
1.203 + */
1.204 + inline TTransition_RepeatOnce_TransitionValidator(CUnitTestContext& aUTContext);
1.205 +
1.206 + /**
1.207 + @fn ValidatePreConditions()
1.208 + Intended Usage : Implemented by the developer to check the
1.209 + end state of the transition behaviour.
1.210 + Error Condition : Invalid pre-conditions
1.211 + @since 7.0
1.212 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.213 + @pre TTransition_RepeatOnce_TransitionValidator is fully constructed.
1.214 + @post No change to the iUTContext class.
1.215 + */
1.216 + virtual inline TBool ValidatePreConditions();
1.217 +
1.218 + /**
1.219 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.220 + Intended Usage : Implemented by the developer to check the
1.221 + end state of the transition behaviour.
1.222 + When overriding, if the transition calls an asynchronous function
1.223 + ValidatePostConditions will be called twice. Firstly, after the
1.224 + asynchronous function has been called and, secondly, after the
1.225 + asynchronous request has completed. The parameter aAsyncState can
1.226 + be used to distinguish between these two cases.
1.227 + Error Condition : Invalid post-conditions.
1.228 + @since 7.0
1.229 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.230 + EAsyncCompleted if the function has completed.
1.231 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.232 + @pre TTransition_RepeatOnce_TransitionValidator is fully constructed.
1.233 + @post No change to the iUTContext class.
1.234 + */
1.235 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.236 + }; // TTransition_RepeatOnce_TransitionValidator
1.237 +
1.238 +
1.239 +// ______________________________________________________________________________
1.240 +//
1.241 +/**
1.242 + @internalComponent
1.243 +
1.244 + Comments : Provide all the TransitionId Unit Test's specific
1.245 + validatation for the state of a transition before and after its execution.
1.246 + on the CTransition test class for a transition.
1.247 + */
1.248 +class TTransition_TransitionId_TransitionValidator : public TTransitionValidator
1.249 + {
1.250 +public:
1.251 + /**
1.252 + @fn TTransition_TransitionId_TransitionValidator(CUnitTestContext& aUTContext)
1.253 + Intended Usage :
1.254 + @leave KErrNoMemory
1.255 + @since 7.0
1.256 + @param aUTContext The context within which this transition is executing
1.257 + */
1.258 + inline TTransition_TransitionId_TransitionValidator(CUnitTestContext& aUTContext);
1.259 +
1.260 + /**
1.261 + @fn ValidatePreConditions()
1.262 + Intended Usage : Implemented by the developer to check the
1.263 + end state of the transition behaviour.
1.264 + Error Condition : Invalid pre-conditions
1.265 + @since 7.0
1.266 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.267 + @pre TTransition_TransitionId_TransitionValidator is fully constructed.
1.268 + @post No change to the iUTContext class.
1.269 + */
1.270 + virtual inline TBool ValidatePreConditions();
1.271 +
1.272 + /**
1.273 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.274 + Intended Usage : Implemented by the developer to check the
1.275 + end state of the transition behaviour.
1.276 + When overriding, if the transition calls an asynchronous function
1.277 + ValidatePostConditions will be called twice. Firstly, after the
1.278 + asynchronous function has been called and, secondly, after the
1.279 + asynchronous request has completed. The parameter aAsyncState can
1.280 + be used to distinguish between these two cases.
1.281 + Error Condition : Invalid post-conditions.
1.282 + @since 7.0
1.283 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.284 + EAsyncCompleted if the function has completed.
1.285 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.286 + @pre TTransition_TransitionId_TransitionValidator is fully constructed.
1.287 + @post No change to the iUTContext class.
1.288 + */
1.289 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.290 + }; // TTransition_TransitionId_TransitionValidator
1.291 +
1.292 +// ______________________________________________________________________________
1.293 +//
1.294 +/**
1.295 + @internalComponent
1.296 +
1.297 + Comments : Provide all the TransitionInfo Unit Test's specific
1.298 + validatation for the state of a transition before and after its execution.
1.299 + on the CTransition test class for a transition.
1.300 + */
1.301 +class TTransition_TransitionInfo_TransitionValidator : public TTransitionValidator
1.302 + {
1.303 +public:
1.304 + /**
1.305 + @fn TTransition_TransitionInfo_TransitionValidator(CUnitTestContext& aUTContext)
1.306 + Intended Usage :
1.307 + @leave KErrNoMemory
1.308 + @since 7.0
1.309 + @param aUTContext The context within which this transition is executing
1.310 + */
1.311 + inline TTransition_TransitionInfo_TransitionValidator(CUnitTestContext& aUTContext);
1.312 +
1.313 + /**
1.314 + @fn ValidatePreConditions()
1.315 + Intended Usage : Implemented by the developer to check the
1.316 + end state of the transition behaviour.
1.317 + Error Condition : Invalid pre-conditions
1.318 + @since 7.0
1.319 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.320 + @pre TTransition_TransitionInfo_TransitionValidator is fully constructed.
1.321 + @post No change to the iUTContext class.
1.322 + */
1.323 + virtual inline TBool ValidatePreConditions();
1.324 +
1.325 + /**
1.326 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.327 + Intended Usage : Implemented by the developer to check the
1.328 + end state of the transition behaviour.
1.329 + When overriding, if the transition calls an asynchronous function
1.330 + ValidatePostConditions will be called twice. Firstly, after the
1.331 + asynchronous function has been called and, secondly, after the
1.332 + asynchronous request has completed. The parameter aAsyncState can
1.333 + be used to distinguish between these two cases.
1.334 + Error Condition : Invalid post-conditions.
1.335 + @since 7.0
1.336 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.337 + EAsyncCompleted if the function has completed.
1.338 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.339 + @pre TTransition_TransitionInfo_TransitionValidator is fully constructed.
1.340 + @post No change to the iUTContext class.
1.341 + */
1.342 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.343 + }; // TTransition_TransitionInfo_TransitionValidator
1.344 +
1.345 +// ______________________________________________________________________________
1.346 +//
1.347 +/**
1.348 + @internalComponent
1.349 +
1.350 + Comments : Provide all the IsBlockingTransition Unit Test's specific
1.351 + validatation for the state of a transition before and after its execution.
1.352 + on the CTransition test class for a transition.
1.353 + */
1.354 +class TTransition_IsBlocking_TransitionValidator : public TTransitionValidator
1.355 + {
1.356 +public:
1.357 + /**
1.358 + @fn TTransition_IsBlocking_TransitionValidator(CUnitTestContext& aUTContext)
1.359 + Intended Usage :
1.360 + @leave KErrNoMemory
1.361 + @since 7.0
1.362 + @param aUTContext The context within which this transition is executing
1.363 + */
1.364 + inline TTransition_IsBlocking_TransitionValidator(CUnitTestContext& aUTContext);
1.365 +
1.366 + /**
1.367 + @fn ValidatePreConditions()
1.368 + Intended Usage : Implemented by the developer to check the
1.369 + end state of the transition behaviour.
1.370 + Error Condition : Invalid pre-conditions
1.371 + @since 7.0
1.372 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.373 + @pre TTransition_IsBlocking_TransitionValidator is fully constructed.
1.374 + @post No change to the iUTContext class.
1.375 + */
1.376 + virtual inline TBool ValidatePreConditions();
1.377 +
1.378 + /**
1.379 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.380 + Intended Usage : Implemented by the developer to check the
1.381 + end state of the transition behaviour.
1.382 + When overriding, if the transition calls an asynchronous function
1.383 + ValidatePostConditions will be called twice. Firstly, after the
1.384 + asynchronous function has been called and, secondly, after the
1.385 + asynchronous request has completed. The parameter aAsyncState can
1.386 + be used to distinguish between these two cases.
1.387 + Error Condition : Invalid post-conditions.
1.388 + @since 7.0
1.389 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.390 + EAsyncCompleted if the function has completed.
1.391 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.392 + @pre TTransition_IsBlocking_TransitionValidator is fully constructed.
1.393 + @post No change to the iUTContext class.
1.394 + */
1.395 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.396 + }; // TTransition_IsBlocking_TransitionValidator
1.397 +
1.398 +// ______________________________________________________________________________
1.399 +//
1.400 +/**
1.401 + @internalComponent
1.402 +
1.403 + Comments : Provide all the SetBlockingTransition Unit Test's specific
1.404 + validatation for the state of a transition before and after its execution.
1.405 + on the CTransition test class for a transition.
1.406 + */
1.407 +class TTransition_SetBlocking_TransitionValidator : public TTransitionValidator
1.408 + {
1.409 +public:
1.410 + /**
1.411 + @fn TTransition_SetBlocking_TransitionValidator(CUnitTestContext& aUTContext)
1.412 + Intended Usage :
1.413 + @leave KErrNoMemory
1.414 + @since 7.0
1.415 + @param aUTContext The context within which this transition is executing
1.416 + */
1.417 + inline TTransition_SetBlocking_TransitionValidator(CUnitTestContext& aUTContext);
1.418 +
1.419 + /**
1.420 + @fn ValidatePreConditions()
1.421 + Intended Usage : Implemented by the developer to check the
1.422 + end state of the transition behaviour.
1.423 + Error Condition : Invalid pre-conditions
1.424 + @since 7.0
1.425 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.426 + @pre TTransition_SetBlocking_TransitionValidator is fully constructed.
1.427 + @post No change to the iUTContext class.
1.428 + */
1.429 + virtual inline TBool ValidatePreConditions();
1.430 +
1.431 + /**
1.432 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.433 + Intended Usage : Implemented by the developer to check the
1.434 + end state of the transition behaviour.
1.435 + When overriding, if the transition calls an asynchronous function
1.436 + ValidatePostConditions will be called twice. Firstly, after the
1.437 + asynchronous function has been called and, secondly, after the
1.438 + asynchronous request has completed. The parameter aAsyncState can
1.439 + be used to distinguish between these two cases.
1.440 + Error Condition : Invalid post-conditions.
1.441 + @since 7.0
1.442 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.443 + EAsyncCompleted if the function has completed.
1.444 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.445 + @pre TTransition_SetBlocking_TransitionValidator is fully constructed.
1.446 + @post No change to the iUTContext class.
1.447 + */
1.448 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.449 + }; // TTransition_SetBlocking_TransitionValidator
1.450 +
1.451 +
1.452 +// ______________________________________________________________________________
1.453 +//
1.454 +/**
1.455 + @internalComponent
1.456 +
1.457 + Comments : Provide all the GetErrorCodeTransition Unit Test's specific
1.458 + validatation for the state of a transition before and after its execution.
1.459 + on the CTransition test class for a transition.
1.460 + */
1.461 +class TTransition_GetErrorCode_TransitionValidator : public TTransitionValidator
1.462 + {
1.463 +public:
1.464 + /**
1.465 + @fn TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
1.466 + Intended Usage :
1.467 + @leave KErrNoMemory
1.468 + @since 7.0
1.469 + @param aUTContext The context within which this transition is executing
1.470 + */
1.471 + inline TTransition_GetErrorCode_TransitionValidator(CUnitTestContext& aUTContext);
1.472 +
1.473 + /**
1.474 + @fn ValidatePreConditions()
1.475 + Intended Usage : Implemented by the developer to check the
1.476 + end state of the transition behaviour.
1.477 + Error Condition : Invalid pre-conditions
1.478 + @since 7.0
1.479 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.480 + @pre TTransition_GetErrorCode_TransitionValidator is fully constructed.
1.481 + @post No change to the iUTContext class.
1.482 + */
1.483 + virtual inline TBool ValidatePreConditions();
1.484 +
1.485 + /**
1.486 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.487 + Intended Usage : Implemented by the developer to check the
1.488 + end state of the transition behaviour.
1.489 + When overriding, if the transition calls an asynchronous function
1.490 + ValidatePostConditions will be called twice. Firstly, after the
1.491 + asynchronous function has been called and, secondly, after the
1.492 + asynchronous request has completed. The parameter aAsyncState can
1.493 + be used to distinguish between these two cases.
1.494 + Error Condition : Invalid post-conditions.
1.495 + @since 7.0
1.496 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.497 + EAsyncCompleted if the function has completed.
1.498 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.499 + @pre TTransition_GetErrorCode_TransitionValidator is fully constructed.
1.500 + @post No change to the iUTContext class.
1.501 + */
1.502 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.503 + }; // TTransition_GetErrorCode_TransitionValidator
1.504 +
1.505 +// ______________________________________________________________________________
1.506 +//
1.507 +/**
1.508 + @internalComponent
1.509 +
1.510 + Comments : Provide all the RunTransitionTransition Unit Test's specific
1.511 + validatation for the state of a transition before and after its execution.
1.512 + on the CTransition test class for a transition.
1.513 + */
1.514 +class TTransition_RunTransition_TransitionValidator : public TTransitionValidator
1.515 + {
1.516 +public:
1.517 + /**
1.518 + @fn TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext)
1.519 + Intended Usage :
1.520 + @leave KErrNoMemory
1.521 + @since 7.0
1.522 + @param aUTContext The context within which this transition is executing
1.523 + */
1.524 + inline TTransition_RunTransition_TransitionValidator(CUnitTestContext& aUTContext);
1.525 +
1.526 + /**
1.527 + @fn ValidatePreConditions()
1.528 + Intended Usage : Implemented by the developer to check the
1.529 + end state of the transition behaviour.
1.530 + Error Condition : Invalid pre-conditions
1.531 + @since 7.0
1.532 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.533 + @pre TTransition_RunTransition_TransitionValidator is fully constructed.
1.534 + @post No change to the iUTContext class.
1.535 + */
1.536 + virtual inline TBool ValidatePreConditions();
1.537 +
1.538 + /**
1.539 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.540 + Intended Usage : Implemented by the developer to check the
1.541 + end state of the transition behaviour.
1.542 + When overriding, if the transition calls an asynchronous function
1.543 + ValidatePostConditions will be called twice. Firstly, after the
1.544 + asynchronous function has been called and, secondly, after the
1.545 + asynchronous request has completed. The parameter aAsyncState can
1.546 + be used to distinguish between these two cases.
1.547 + Error Condition : Invalid post-conditions.
1.548 + @since 7.0
1.549 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.550 + EAsyncCompleted if the function has completed.
1.551 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.552 + @pre TTransition_RunTransition_TransitionValidator is fully constructed.
1.553 + @post No change to the iUTContext class.
1.554 + */
1.555 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.556 + }; // TTransition_RunTransition_TransitionValidator
1.557 +// ______________________________________________________________________________
1.558 +//
1.559 +/**
1.560 + @internalComponent
1.561 +
1.562 + Comments : Provide all the CancelTransition Unit Test's specific
1.563 + validatation for the state of a transition before and after its execution.
1.564 + on the CTransition test class for a transition.
1.565 + */
1.566 +class TTransition_Cancel_TransitionValidator : public TTransitionValidator
1.567 + {
1.568 +public:
1.569 + /**
1.570 + @fn TTransition_Cancel_TransitionValidator(CUnitTestContext& aUTContext)
1.571 + Intended Usage :
1.572 + @leave KErrNoMemory
1.573 + @since 7.0
1.574 + @param aUTContext The context within which this transition is executing
1.575 + */
1.576 + inline TTransition_Cancel_TransitionValidator(CUnitTestContext& aUTContext);
1.577 +
1.578 + /**
1.579 + @fn ValidatePreConditions()
1.580 + Intended Usage : Implemented by the developer to check the
1.581 + end state of the transition behaviour.
1.582 + Error Condition : Invalid pre-conditions
1.583 + @since 7.0
1.584 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.585 + @pre TTransition_Cancel_TransitionValidator is fully constructed.
1.586 + @post No change to the iUTContext class.
1.587 + */
1.588 + virtual inline TBool ValidatePreConditions();
1.589 +
1.590 + /**
1.591 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.592 + Intended Usage : Implemented by the developer to check the
1.593 + end state of the transition behaviour.
1.594 + When overriding, if the transition calls an asynchronous function
1.595 + ValidatePostConditions will be called twice. Firstly, after the
1.596 + asynchronous function has been called and, secondly, after the
1.597 + asynchronous request has completed. The parameter aAsyncState can
1.598 + be used to distinguish between these two cases.
1.599 + Error Condition : Invalid post-conditions.
1.600 + @since 7.0
1.601 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.602 + EAsyncCompleted if the function has completed.
1.603 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.604 + @pre TTransition_Cancel_TransitionValidator is fully constructed.
1.605 + @post No change to the iUTContext class.
1.606 + */
1.607 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.608 + }; // TTransition_Cancel_TransitionValidator
1.609 +
1.610 +// ______________________________________________________________________________
1.611 +//
1.612 +/**
1.613 + @internalComponent
1.614 +
1.615 + Comments : Provide all the DtorUnit Test's specific
1.616 + validatation for the state of a transition before and after its execution.
1.617 + on the CTransition test class for a transition.
1.618 + */
1.619 +class TTransition_NULL_TransitionValidator : public TTransitionValidator
1.620 + {
1.621 +public:
1.622 + /**
1.623 + @fn TTransition_NULL_TransitionValidator(CUnitTestContext& aUTContext)
1.624 + Intended Usage :
1.625 + @leave KErrNoMemory
1.626 + @since 7.0
1.627 + @param aUTContext The context within which this transition is executing
1.628 + */
1.629 + inline TTransition_NULL_TransitionValidator(CUnitTestContext& aUTContext);
1.630 +
1.631 + /**
1.632 + @fn ValidatePreConditions()
1.633 + Intended Usage : Implemented by the developer to check the
1.634 + end state of the transition behaviour.
1.635 + Error Condition : Invalid pre-conditions
1.636 + @since 7.0
1.637 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.638 + @pre TTransition_Dtor_TransitionValidator is fully constructed.
1.639 + @post No change to the iUTContext class.
1.640 + */
1.641 + virtual inline TBool ValidatePreConditions();
1.642 +
1.643 + /**
1.644 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.645 + Intended Usage : Implemented by the developer to check the
1.646 + end state of the transition behaviour.
1.647 + When overriding, if the transition calls an asynchronous function
1.648 + ValidatePostConditions will be called twice. Firstly, after the
1.649 + asynchronous function has been called and, secondly, after the
1.650 + asynchronous request has completed. The parameter aAsyncState can
1.651 + be used to distinguish between these two cases.
1.652 + Error Condition : Invalid post-conditions.
1.653 + @since 7.0
1.654 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.655 + EAsyncCompleted if the function has completed.
1.656 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.657 + @pre TTransition_Dtor_TransitionValidator is fully constructed.
1.658 + @post No change to the iUTContext class.
1.659 + */
1.660 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.661 + }; // TTransition_Dtor_TransitionValidator
1.662 +
1.663 +
1.664 +#include "TransitionTransitionValidation.inl"
1.665 +
1.666 +#endif // __TRANSITIONTRANSITIONVALIDATION_H__
1.667 +