os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitionValidation.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitionValidation.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,664 @@
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 CUnitTest class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __UNITTESTTRANSITIONVALIDATION_H__
1.22 +#define __UNITTESTTRANSITIONVALIDATION_H__
1.23 +
1.24 +#include "UnitTestTransitions.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 CUnitTest test class for a transition.
1.34 + */
1.35 +class TUnitTest_Ctor_TransitionValidator : public TTransitionValidator
1.36 + {
1.37 +public:
1.38 + /**
1.39 + @fn TUnitTest_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
1.40 + Intended Usage : Default constructor.
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 TUnitTest_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 TUnitTest_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 TUnitTest_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 + }; // TUnitTest_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 CUnitTest test class for a transition.
1.87 + */
1.88 +class TUnitTest_Dtor_TransitionValidator : public TTransitionValidator
1.89 + {
1.90 +public:
1.91 + /**
1.92 + @fn TUnitTest_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 TUnitTest_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 TUnitTest_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 TUnitTest_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 + }; // TUnitTest_Dtor_TransitionValidator
1.131 +
1.132 +// ______________________________________________________________________________
1.133 +//
1.134 +/**
1.135 + @internalComponent
1.136 +
1.137 + Comments : Provide all the TransitionSetUnit Test's specific
1.138 + validatation for the state of a transition before and after its execution.
1.139 + on the CUnitTest test class for a transition.
1.140 + */
1.141 +class TUnitTest_TransitionSet_TransitionValidator : public TTransitionValidator
1.142 + {
1.143 +public:
1.144 + /**
1.145 + @fn TUnitTest_TransitionSet_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 TUnitTest_TransitionSet_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 TUnitTest_TransitionSet_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 TUnitTest_TransitionSet_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 + }; // TUnitTest_TransitionSet_TransitionValidator
1.184 +
1.185 +// ______________________________________________________________________________
1.186 +//
1.187 +/**
1.188 + @internalComponent
1.189 +
1.190 + Comments : Provide all the GetCurrentTransitionUnit Test's specific
1.191 + validatation for the state of a transition before and after its execution.
1.192 + on the CUnitTest test class for a transition.
1.193 + */
1.194 +class TUnitTest_GetCurrentTransition_TransitionValidator : public TTransitionValidator
1.195 + {
1.196 +public:
1.197 + /**
1.198 + @fn TUnitTest_GetCurrentTransition_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 TUnitTest_GetCurrentTransition_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 TUnitTest_GetCurrentTransition_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 TUnitTest_GetCurrentTransition_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 + }; // TUnitTest_GetCurrentTransition_TransitionValidator
1.237 +
1.238 +// ______________________________________________________________________________
1.239 +//
1.240 +/**
1.241 + @internalComponent
1.242 +
1.243 + Comments : Provide all the SetCurrentTransitionUnit Test's specific
1.244 + validatation for the state of a transition before and after its execution.
1.245 + on the CUnitTest test class for a transition.
1.246 + */
1.247 +class TUnitTest_SetCurrentTransition_TransitionValidator : public TTransitionValidator
1.248 + {
1.249 +public:
1.250 + /**
1.251 + @fn TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
1.252 + Intended Usage :
1.253 + @leave KErrNoMemory
1.254 + @since 7.0
1.255 + @param aUTContext The context within which this transition is executing
1.256 + */
1.257 + inline TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext);
1.258 +
1.259 + /**
1.260 + @fn ValidatePreConditions()
1.261 + Intended Usage : Implemented by the developer to check the
1.262 + end state of the transition behaviour.
1.263 + Error Condition : Invalid pre-conditions
1.264 + @since 7.0
1.265 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.266 + @pre TUnitTest_SetCurrentTransition_TransitionValidator is fully constructed.
1.267 + @post No change to the iUTContext class.
1.268 + */
1.269 + virtual inline TBool ValidatePreConditions();
1.270 +
1.271 + /**
1.272 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.273 + Intended Usage : Implemented by the developer to check the
1.274 + end state of the transition behaviour.
1.275 + When overriding, if the transition calls an asynchronous function
1.276 + ValidatePostConditions will be called twice. Firstly, after the
1.277 + asynchronous function has been called and, secondly, after the
1.278 + asynchronous request has completed. The parameter aAsyncState can
1.279 + be used to distinguish between these two cases.
1.280 + Error Condition : Invalid post-conditions.
1.281 + @since 7.0
1.282 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.283 + EAsyncCompleted if the function has completed.
1.284 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.285 + @pre TUnitTest_SetCurrentTransition_TransitionValidator is fully constructed.
1.286 + @post No change to the iUTContext class.
1.287 + */
1.288 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.289 + }; // TUnitTest_SetCurrentTransition_TransitionValidator
1.290 +
1.291 +// ______________________________________________________________________________
1.292 +//
1.293 +/**
1.294 + @internalComponent
1.295 +
1.296 + Comments : Provide all the SetParametersUnit Test's specific
1.297 + validatation for the state of a transition before and after its execution.
1.298 + on the CUnitTest test class for a transition.
1.299 + */
1.300 +class TUnitTest_SetParameters_TransitionValidator : public TTransitionValidator
1.301 + {
1.302 +public:
1.303 + /**
1.304 + @fn TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext)
1.305 + Intended Usage :
1.306 + @leave KErrNoMemory
1.307 + @since 7.0
1.308 + @param aUTContext The context within which this transition is executing
1.309 + */
1.310 + inline TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext);
1.311 +
1.312 + /**
1.313 + @fn ValidatePreConditions()
1.314 + Intended Usage : Implemented by the developer to check the
1.315 + end state of the transition behaviour.
1.316 + Error Condition : Invalid pre-conditions
1.317 + @since 7.0
1.318 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.319 + @pre TUnitTest_SetParameters_TransitionValidator is fully constructed.
1.320 + @post No change to the iUTContext class.
1.321 + */
1.322 + virtual inline TBool ValidatePreConditions();
1.323 +
1.324 + /**
1.325 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.326 + Intended Usage : Implemented by the developer to check the
1.327 + end state of the transition behaviour.
1.328 + When overriding, if the transition calls an asynchronous function
1.329 + ValidatePostConditions will be called twice. Firstly, after the
1.330 + asynchronous function has been called and, secondly, after the
1.331 + asynchronous request has completed. The parameter aAsyncState can
1.332 + be used to distinguish between these two cases.
1.333 + Error Condition : Invalid post-conditions.
1.334 + @since 7.0
1.335 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.336 + EAsyncCompleted if the function has completed.
1.337 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.338 + @pre TUnitTest_SetParameters_TransitionValidator is fully constructed.
1.339 + @post No change to the iUTContext class.
1.340 + */
1.341 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.342 + }; // TUnitTest_SetParameters_TransitionValidator
1.343 +
1.344 +// ______________________________________________________________________________
1.345 +//
1.346 +/**
1.347 + @internalComponent
1.348 +
1.349 + Comments : Provide all the PrepareUnitTestUnit Test's specific
1.350 + validatation for the state of a transition before and after its execution.
1.351 + on the CUnitTest test class for a transition.
1.352 + */
1.353 +class TUnitTest_PrepareUnitTest_TransitionValidator : public TTransitionValidator
1.354 + {
1.355 +public:
1.356 + /**
1.357 + @fn TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
1.358 + Intended Usage :
1.359 + @leave KErrNoMemory
1.360 + @since 7.0
1.361 + @param aUTContext The context within which this transition is executing
1.362 + */
1.363 + inline TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext);
1.364 +
1.365 + /**
1.366 + @fn ValidatePreConditions()
1.367 + Intended Usage : Implemented by the developer to check the
1.368 + end state of the transition behaviour.
1.369 + Error Condition : Invalid pre-conditions
1.370 + @since 7.0
1.371 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.372 + @pre TUnitTest_PrepareUnitTest_TransitionValidator is fully constructed.
1.373 + @post No change to the iUTContext class.
1.374 + */
1.375 + virtual inline TBool ValidatePreConditions();
1.376 +
1.377 + /**
1.378 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.379 + Intended Usage : Implemented by the developer to check the
1.380 + end state of the transition behaviour.
1.381 + When overriding, if the transition calls an asynchronous function
1.382 + ValidatePostConditions will be called twice. Firstly, after the
1.383 + asynchronous function has been called and, secondly, after the
1.384 + asynchronous request has completed. The parameter aAsyncState can
1.385 + be used to distinguish between these two cases.
1.386 + Error Condition : Invalid post-conditions.
1.387 + @since 7.0
1.388 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.389 + EAsyncCompleted if the function has completed.
1.390 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.391 + @pre TUnitTest_PrepareUnitTest_TransitionValidator is fully constructed.
1.392 + @post No change to the iUTContext class.
1.393 + */
1.394 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.395 + }; // TUnitTest_PrepareUnitTest_TransitionValidator
1.396 +
1.397 +// ______________________________________________________________________________
1.398 +//
1.399 +/**
1.400 + @internalComponent
1.401 +
1.402 + Comments : Provide all the RunTestUnit Test's specific
1.403 + validatation for the state of a transition before and after its execution.
1.404 + on the CUnitTest test class for a transition.
1.405 + */
1.406 +class TUnitTest_RunTest_TransitionValidator : public TTransitionValidator
1.407 + {
1.408 +public:
1.409 + /**
1.410 + @fn TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext)
1.411 + Intended Usage :
1.412 + @leave KErrNoMemory
1.413 + @since 7.0
1.414 + @param aUTContext The context within which this transition is executing
1.415 + */
1.416 + inline TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext);
1.417 +
1.418 + /**
1.419 + @fn ValidatePreConditions()
1.420 + Intended Usage : Implemented by the developer to check the
1.421 + end state of the transition behaviour.
1.422 + Error Condition : Invalid pre-conditions
1.423 + @since 7.0
1.424 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.425 + @pre TUnitTest_RunTest_TransitionValidator is fully constructed.
1.426 + @post No change to the iUTContext class.
1.427 + */
1.428 + virtual inline TBool ValidatePreConditions();
1.429 +
1.430 + /**
1.431 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.432 + Intended Usage : Implemented by the developer to check the
1.433 + end state of the transition behaviour.
1.434 + When overriding, if the transition calls an asynchronous function
1.435 + ValidatePostConditions will be called twice. Firstly, after the
1.436 + asynchronous function has been called and, secondly, after the
1.437 + asynchronous request has completed. The parameter aAsyncState can
1.438 + be used to distinguish between these two cases.
1.439 + Error Condition : Invalid post-conditions.
1.440 + @since 7.0
1.441 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.442 + EAsyncCompleted if the function has completed.
1.443 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.444 + @pre TUnitTest_RunTest_TransitionValidator is fully constructed.
1.445 + @post No change to the iUTContext class.
1.446 + */
1.447 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.448 + }; // TUnitTest_RunTest_TransitionValidator
1.449 +
1.450 +// ______________________________________________________________________________
1.451 +//
1.452 +/**
1.453 + @internalComponent
1.454 +
1.455 + Comments : Provide all the AddTransitionUnit Test's specific
1.456 + validatation for the state of a transition before and after its execution.
1.457 + on the CUnitTest test class for a transition.
1.458 + */
1.459 +class TUnitTest_AddTransition_TransitionValidator : public TTransitionValidator
1.460 + {
1.461 +public:
1.462 + /**
1.463 + @fn TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext)
1.464 + Intended Usage :
1.465 + @leave KErrNoMemory
1.466 + @since 7.0
1.467 + @param aUTContext The context within which this transition is executing
1.468 + */
1.469 + inline TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext);
1.470 +
1.471 + /**
1.472 + @fn ValidatePreConditions()
1.473 + Intended Usage : Implemented by the developer to check the
1.474 + end state of the transition behaviour.
1.475 + Error Condition : Invalid pre-conditions
1.476 + @since 7.0
1.477 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.478 + @pre TUnitTest_AddTransition_TransitionValidator is fully constructed.
1.479 + @post No change to the iUTContext class.
1.480 + */
1.481 + virtual inline TBool ValidatePreConditions();
1.482 +
1.483 + /**
1.484 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.485 + Intended Usage : Implemented by the developer to check the
1.486 + end state of the transition behaviour.
1.487 + When overriding, if the transition calls an asynchronous function
1.488 + ValidatePostConditions will be called twice. Firstly, after the
1.489 + asynchronous function has been called and, secondly, after the
1.490 + asynchronous request has completed. The parameter aAsyncState can
1.491 + be used to distinguish between these two cases.
1.492 + Error Condition : Invalid post-conditions.
1.493 + @since 7.0
1.494 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.495 + EAsyncCompleted if the function has completed.
1.496 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.497 + @pre TUnitTest_AddTransition_TransitionValidator is fully constructed.
1.498 + @post No change to the iUTContext class.
1.499 + */
1.500 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.501 + }; // TUnitTest_AddTransition_TransitionValidator
1.502 +
1.503 +// ______________________________________________________________________________
1.504 +//
1.505 +/**
1.506 + @internalComponent
1.507 +
1.508 + Comments : Provide all the AddBlockingTransitionUnit Test's specific
1.509 + validatation for the state of a transition before and after its execution.
1.510 + on the CUnitTest test class for a transition.
1.511 + */
1.512 +class TUnitTest_AddBlockingTransition_TransitionValidator : public TTransitionValidator
1.513 + {
1.514 +public:
1.515 + /**
1.516 + @fn TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext)
1.517 + Intended Usage :
1.518 + @leave KErrNoMemory
1.519 + @since 7.0
1.520 + @param aUTContext The context within which this transition is executing
1.521 + */
1.522 + inline TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext);
1.523 +
1.524 + /**
1.525 + @fn ValidatePreConditions()
1.526 + Intended Usage : Implemented by the developer to check the
1.527 + end state of the transition behaviour.
1.528 + Error Condition : Invalid pre-conditions
1.529 + @since 7.0
1.530 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.531 + @pre TUnitTest_AddBlockingTransition_TransitionValidator is fully constructed.
1.532 + @post No change to the iUTContext class.
1.533 + */
1.534 + virtual inline TBool ValidatePreConditions();
1.535 +
1.536 + /**
1.537 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.538 + Intended Usage : Implemented by the developer to check the
1.539 + end state of the transition behaviour.
1.540 + When overriding, if the transition calls an asynchronous function
1.541 + ValidatePostConditions will be called twice. Firstly, after the
1.542 + asynchronous function has been called and, secondly, after the
1.543 + asynchronous request has completed. The parameter aAsyncState can
1.544 + be used to distinguish between these two cases.
1.545 + Error Condition : Invalid post-conditions.
1.546 + @since 7.0
1.547 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.548 + EAsyncCompleted if the function has completed.
1.549 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.550 + @pre TUnitTest_AddBlockingTransition_TransitionValidator is fully constructed.
1.551 + @post No change to the iUTContext class.
1.552 + */
1.553 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.554 + }; // TUnitTest_AddBlockingTransition_TransitionValidator
1.555 +
1.556 +// ______________________________________________________________________________
1.557 +//
1.558 +/**
1.559 + @internalComponent
1.560 +
1.561 + Comments : Provide all the AddLeaveErrorCodeUnit Test's specific
1.562 + validatation for the state of a transition before and after its execution.
1.563 + on the CUnitTest test class for a transition.
1.564 + */
1.565 +class TUnitTest_AddLeaveErrorCode_TransitionValidator : public TTransitionValidator
1.566 + {
1.567 +public:
1.568 + /**
1.569 + @fn TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
1.570 + Intended Usage :
1.571 + @leave KErrNoMemory
1.572 + @since 7.0
1.573 + @param aUTContext The context within which this transition is executing
1.574 + */
1.575 + inline TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext);
1.576 +
1.577 + /**
1.578 + @fn ValidatePreConditions()
1.579 + Intended Usage : Implemented by the developer to check the
1.580 + end state of the transition behaviour.
1.581 + Error Condition : Invalid pre-conditions
1.582 + @since 7.0
1.583 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.584 + @pre TUnitTest_AddLeaveErrorCode_TransitionValidator is fully constructed.
1.585 + @post No change to the iUTContext class.
1.586 + */
1.587 + virtual inline TBool ValidatePreConditions();
1.588 +
1.589 + /**
1.590 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.591 + Intended Usage : Implemented by the developer to check the
1.592 + end state of the transition behaviour.
1.593 + When overriding, if the transition calls an asynchronous function
1.594 + ValidatePostConditions will be called twice. Firstly, after the
1.595 + asynchronous function has been called and, secondly, after the
1.596 + asynchronous request has completed. The parameter aAsyncState can
1.597 + be used to distinguish between these two cases.
1.598 + Error Condition : Invalid post-conditions.
1.599 + @since 7.0
1.600 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.601 + EAsyncCompleted if the function has completed.
1.602 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.603 + @pre TUnitTest_AddLeaveErrorCode_TransitionValidator is fully constructed.
1.604 + @post No change to the iUTContext class.
1.605 + */
1.606 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.607 + }; // TUnitTest_AddLeaveErrorCode_TransitionValidator
1.608 +
1.609 +// ______________________________________________________________________________
1.610 +//
1.611 +/**
1.612 + @internalComponent
1.613 +
1.614 + Comments : Provide all the UnitTestNameUnit Test's specific
1.615 + validatation for the state of a transition before and after its execution.
1.616 + on the CUnitTest test class for a transition.
1.617 + */
1.618 +class TUnitTest_UnitTestName_TransitionValidator : public TTransitionValidator
1.619 + {
1.620 +public:
1.621 + /**
1.622 + @fn TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext)
1.623 + Intended Usage :
1.624 + @leave KErrNoMemory
1.625 + @since 7.0
1.626 + @param aUTContext The context within which this transition is executing
1.627 + */
1.628 + inline TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext);
1.629 +
1.630 + /**
1.631 + @fn ValidatePreConditions()
1.632 + Intended Usage : Implemented by the developer to check the
1.633 + end state of the transition behaviour.
1.634 + Error Condition : Invalid pre-conditions
1.635 + @since 7.0
1.636 + @return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
1.637 + @pre TUnitTest_UnitTestName_TransitionValidator is fully constructed.
1.638 + @post No change to the iUTContext class.
1.639 + */
1.640 + virtual inline TBool ValidatePreConditions();
1.641 +
1.642 + /**
1.643 + @fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
1.644 + Intended Usage : Implemented by the developer to check the
1.645 + end state of the transition behaviour.
1.646 + When overriding, if the transition calls an asynchronous function
1.647 + ValidatePostConditions will be called twice. Firstly, after the
1.648 + asynchronous function has been called and, secondly, after the
1.649 + asynchronous request has completed. The parameter aAsyncState can
1.650 + be used to distinguish between these two cases.
1.651 + Error Condition : Invalid post-conditions.
1.652 + @since 7.0
1.653 + @param aAsyncState EAsyncCalled if the async function has been just been called,
1.654 + EAsyncCompleted if the function has completed.
1.655 + @return TBool ETrue if the post-conditions were valid, EFalse otherwise.
1.656 + @pre TUnitTest_UnitTestName_TransitionValidator is fully constructed.
1.657 + @post No change to the iUTContext class.
1.658 + */
1.659 + virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
1.660 + }; // TUnitTest_UnitTestName_TransitionValidator
1.661 +
1.662 +
1.663 +
1.664 +#include "UnitTestTransitionValidation.inl"
1.665 +
1.666 +#endif // __UNITTESTTRANSITIONVALIDATION_H__
1.667 +