os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitions.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitions.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,540 @@
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 CDataLogger class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __DATALOGGERTRANSITIONS_H__
1.22 +#define __DATALOGGERTRANSITIONS_H__
1.23 +
1.24 +#include "TestUtilities.h"
1.25 +#include "StateAccessor.h"
1.26 +#include "LeakTestTransition.h"
1.27 +#include <ecom/test_bed/datalogger.h>
1.28 +#include "DataLoggerStateAccessor.h"
1.29 +#include <ecom/test_bed/unittest.h>
1.30 +
1.31 +#define CTransitionType CLeakTestTransition
1.32 +
1.33 +// ______________________________________________________________________________
1.34 +//
1.35 +/**
1.36 + @internalComponent
1.37 +
1.38 + Comments : Provide all the CDataLogger specific
1.39 + parameters and behaviour on the CDataLogger
1.40 + test class for a transition.
1.41 + */
1.42 +class CDataLogger_UnitTestContext : public CUnitTestContext
1.43 + {
1.44 +public:
1.45 + /**
1.46 + @fn CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
1.47 + MStateAccessor& aStateAccessor,
1.48 + MTransitionObserver& aObserver)
1.49 + Intended Usage : Default constructor.
1.50 + Error Condition : None.
1.51 + @since 7.0
1.52 + @param aDataLogger The output logging object.
1.53 + @param aObserver The observer of this UnitTest's Transitions.
1.54 + @param aStateAccessor WhiteBox state access to the CDataLogger class under test.
1.55 + @pre None.
1.56 + @post CDataLogger_UnitTestContext is fully constructed, and initialised.
1.57 + */
1.58 + inline CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
1.59 + MStateAccessor& aStateAccessor,
1.60 + MTransitionObserver& aObserver);
1.61 +
1.62 + /**
1.63 + @fn ~CDataLogger_UnitTestContext()
1.64 + Intended Usage : Default Destructor
1.65 + @since 7.0
1.66 + @pre CDataLogger_UnitTestContext is fully constructed.
1.67 + @post CDataLogger_UnitTestContext is fully destroyed
1.68 + */
1.69 + virtual inline ~CDataLogger_UnitTestContext();
1.70 +
1.71 + /** The instance of the class under test */
1.72 + CDataLogger* iDataLogger;
1.73 + /** The logging info to be used by the data logger */
1.74 + TLoggingInfo* iLoggingInfo;
1.75 + /** The address of the start of the block to be logged */
1.76 + const TUint8* iAddress;
1.77 + /** The number of bytes to be logged */
1.78 + TInt iLength;
1.79 + /** The argument set to be logged */
1.80 + HBufC* iArg;
1.81 + /** A narrow descriptor version of the argument set to be logged */
1.82 + HBufC8* iArgNarrow;
1.83 + /** The text to be added to the report */
1.84 + const TDesC* iReportComment;
1.85 + /** The text to be formatted and added to the report */
1.86 + const TDesC* iFormatReport;
1.87 + /** The argument set to be added to the report */
1.88 + const TDesC* iReportArg;
1.89 +
1.90 + }; // CDataLogger_UnitTestContext
1.91 +
1.92 +// ______________________________________________________________________________
1.93 +//
1.94 +/**
1.95 + @internalComponent
1.96 +
1.97 + Comments : Transition test of the CDataLogger::NewL method.
1.98 + */
1.99 +class CDataLogger_NewL_Transition : public CTransitionType
1.100 + {
1.101 +public:
1.102 + /**
1.103 + @fn CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
1.104 + TTransitionValidator& aValidator)
1.105 + Intended Usage : Standard c'tor method.
1.106 + Error Condition : None.
1.107 + @since 7.0
1.108 + @param aUTContext The context this transition is operating in.
1.109 + @param aValidator Used for checking the pre & post conditions of the test object.
1.110 + @pre None.
1.111 + @post CDataLogger_NewL_Transition is fully constructed.
1.112 + */
1.113 + CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
1.114 + TTransitionValidator& aValidator);
1.115 + /**
1.116 + @fn TransitMethodL()
1.117 + Intended Usage : To execute the CDataLogger::NewL method for the test harness.
1.118 + Error Condition : Leaves with an error code.
1.119 + @leave KErrNoMemory, (@see CDataLogger::NewL)
1.120 + @since 7.0
1.121 + @return None
1.122 + @pre CDataLogger_NewL_Transition is fully constructed.
1.123 + @post No change in the CDataLogger_NewL_Transition apart
1.124 + from iDataLogger, which may have changed state.
1.125 + (@see CDataLogger::NewL post-condition) for iDataLogger's new state.
1.126 + */
1.127 + inline void TransitMethodL();
1.128 +
1.129 + /**
1.130 + @fn Context() const
1.131 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.132 + Error Condition : None.
1.133 + @since 7.0
1.134 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.135 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.136 + @post No change in the CDataLogger_NewL_Transition
1.137 + */
1.138 + inline CDataLogger_UnitTestContext& Context() const;
1.139 + }; // CDataLogger_NewL_Transition
1.140 +
1.141 +// ______________________________________________________________________________
1.142 +//
1.143 +/**
1.144 + @internalComponent
1.145 +
1.146 + Comments : Transition test of the CDataLogger::Dtor method.
1.147 + */
1.148 +class CDataLogger_Dtor_Transition : public CTransition
1.149 + {
1.150 +public:
1.151 + /**
1.152 + @fn CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
1.153 + TTransitionValidator& aValidator)
1.154 + Intended Usage : Standard c'tor method.
1.155 + Error Condition : None.
1.156 + @since 7.0
1.157 + @param aUTContext The context this transition is operating in.
1.158 + @param aValidator Used for checking the pre & post conditions of the test object.
1.159 + @pre None.
1.160 + @post CDataLogger_Dtor_Transition is fully constructed.
1.161 + */
1.162 + CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
1.163 + TTransitionValidator& aValidator);
1.164 + /**
1.165 + @fn TransitMethodL()
1.166 + Intended Usage : To execute the CDataLogger::Dtor method for the test harness.
1.167 + Error Condition : Leaves with an error code.
1.168 + @leave KErrNoMemory, (@see CDataLogger::Dtor)
1.169 + @since 7.0
1.170 + @return None
1.171 + @pre CDataLogger_Dtor_Transition is fully constructed.
1.172 + @post No change in the CDataLogger_Dtor_Transition apart
1.173 + from iDataLogger, which may have changed state.
1.174 + (@see CDataLogger::Dtor post-condition) for iDataLogger's new state.
1.175 + */
1.176 + inline void TransitMethodL();
1.177 +
1.178 + /**
1.179 + @fn Context() const
1.180 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.181 + Error Condition : None.
1.182 + @since 7.0
1.183 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.184 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.185 + @post No change in the CDataLogger_Dtor_Transition
1.186 + */
1.187 + inline CDataLogger_UnitTestContext& Context() const;
1.188 + }; // CDataLogger_Dtor_Transition
1.189 +
1.190 +// ______________________________________________________________________________
1.191 +//
1.192 +/**
1.193 + @internalComponent
1.194 +
1.195 + Comments : Transition test of the CDataLogger::DumpMemoryBlock method.
1.196 + */
1.197 +class CDataLogger_DumpMemoryBlock_Transition : public CTransition
1.198 + {
1.199 +public:
1.200 + /**
1.201 + @fn CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
1.202 + TTransitionValidator& aValidator)
1.203 + Intended Usage : Standard c'tor method.
1.204 + Error Condition : None.
1.205 + @since 7.0
1.206 + @param aUTContext The context this transition is operating in.
1.207 + @param aValidator Used for checking the pre & post conditions of the test object.
1.208 + @pre None.
1.209 + @post CDataLogger_DumpMemoryBlock_Transition is fully constructed.
1.210 + */
1.211 + CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
1.212 + TTransitionValidator& aValidator);
1.213 + /**
1.214 + @fn TransitMethodL()
1.215 + Intended Usage : To execute the CDataLogger::DumpMemoryBlock method for the test harness.
1.216 + Error Condition : Leaves with an error code.
1.217 + @leave KErrNoMemory, (@see CDataLogger::DumpMemoryBlock)
1.218 + @since 7.0
1.219 + @return None
1.220 + @pre CDataLogger_DumpMemoryBlock_Transition is fully constructed.
1.221 + @post No change in the CDataLogger_DumpMemoryBlock_Transition apart
1.222 + from iDataLogger, which may have changed state.
1.223 + (@see CDataLogger::DumpMemoryBlock post-condition) for iDataLogger's new state.
1.224 + */
1.225 + inline void TransitMethodL();
1.226 +
1.227 + /**
1.228 + @fn Context() const
1.229 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.230 + Error Condition : None.
1.231 + @since 7.0
1.232 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.233 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.234 + @post No change in the CDataLogger_DumpMemoryBlock_Transition
1.235 + */
1.236 + inline CDataLogger_UnitTestContext& Context() const;
1.237 + }; // CDataLogger_DumpMemoryBlock_Transition
1.238 +
1.239 +
1.240 +// ______________________________________________________________________________
1.241 +//
1.242 +/**
1.243 + @internalComponent
1.244 +
1.245 + Comments : Transition test of the CDataLogger::LogInformation method.
1.246 + */
1.247 +class CDataLogger_LogInformation_Transition : public CTransition
1.248 + {
1.249 +public:
1.250 + /**
1.251 + @fn CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
1.252 + TTransitionValidator& aValidator)
1.253 + Intended Usage : Standard c'tor method.
1.254 + Error Condition : None.
1.255 + @since 7.0
1.256 + @param aUTContext The context this transition is operating in.
1.257 + @param aValidator Used for checking the pre & post conditions of the test object.
1.258 + @pre None.
1.259 + @post CDataLogger_LogInformation_Transition is fully constructed.
1.260 + */
1.261 + CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
1.262 + TTransitionValidator& aValidator);
1.263 + /**
1.264 + @fn TransitMethodL()
1.265 + Intended Usage : To execute the CDataLogger::LogInformation method for the test harness.
1.266 + Error Condition : Leaves with an error code.
1.267 + @leave KErrNoMemory, (@see CDataLogger::LogInformation)
1.268 + @since 7.0
1.269 + @return None
1.270 + @pre CDataLogger_LogInformation_Transition is fully constructed.
1.271 + @post No change in the CDataLogger_LogInformation_Transition apart
1.272 + from iDataLogger, which may have changed state.
1.273 + (@see CDataLogger::LogInformation post-condition) for iDataLogger's new state.
1.274 + */
1.275 + inline void TransitMethodL();
1.276 +
1.277 + /**
1.278 + @fn Context() const
1.279 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.280 + Error Condition : None.
1.281 + @since 7.0
1.282 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.283 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.284 + @post No change in the CDataLogger_LogInformation_Transition
1.285 + */
1.286 + inline CDataLogger_UnitTestContext& Context() const;
1.287 + }; // CDataLogger_LogInformation_Transition
1.288 +
1.289 +// ______________________________________________________________________________
1.290 +//
1.291 +/**
1.292 + @internalComponent
1.293 +
1.294 + Comments : Transition test of the CDataLogger::LogInformationNarrow method.
1.295 + */
1.296 +class CDataLogger_LogInformationNarrow_Transition : public CTransition
1.297 + {
1.298 +public:
1.299 + /**
1.300 + @fn CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
1.301 + TTransitionValidator& aValidator)
1.302 + Intended Usage : Standard c'tor method.
1.303 + Error Condition : None.
1.304 + @since 7.0
1.305 + @param aUTContext The context this transition is operating in.
1.306 + @param aValidator Used for checking the pre & post conditions of the test object.
1.307 + @pre None.
1.308 + @post CDataLogger_LogInformationNarrow_Transition is fully constructed.
1.309 + */
1.310 + CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
1.311 + TTransitionValidator& aValidator);
1.312 + /**
1.313 + @fn TransitMethodL()
1.314 + Intended Usage : To execute the CDataLogger::LogInformationNarrow method for the test harness.
1.315 + Error Condition : Leaves with an error code.
1.316 + @leave KErrNoMemory, (@see CDataLogger::LogInformationNarrow)
1.317 + @since 7.0
1.318 + @return None
1.319 + @pre CDataLogger_LogInformationNarrow_Transition is fully constructed.
1.320 + @post No change in the CDataLogger_LogInformationNarrow_Transition apart
1.321 + from iDataLogger, which may have changed state.
1.322 + (@see CDataLogger::LogInformationNarrow post-condition) for iDataLogger's new state.
1.323 + */
1.324 + inline void TransitMethodL();
1.325 +
1.326 + /**
1.327 + @fn Context() const
1.328 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.329 + Error Condition : None.
1.330 + @since 7.0
1.331 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.332 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.333 + @post No change in the CDataLogger_LogInformationNarrow_Transition
1.334 + */
1.335 + inline CDataLogger_UnitTestContext& Context() const;
1.336 + }; // CDataLogger_LogInformationNarrow_Transition
1.337 +
1.338 +// ______________________________________________________________________________
1.339 +//
1.340 +/**
1.341 + @internalComponent
1.342 +
1.343 + Comments : Transition test of the CDataLogger::LogInformationWithParameters method.
1.344 + */
1.345 +class CDataLogger_LogInformationWithParameters_Transition : public CTransition
1.346 + {
1.347 +public:
1.348 + /**
1.349 + @fn CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
1.350 + TTransitionValidator& aValidator)
1.351 + Intended Usage : Standard c'tor method.
1.352 + Error Condition : None.
1.353 + @since 7.0
1.354 + @param aUTContext The context this transition is operating in.
1.355 + @param aValidator Used for checking the pre & post conditions of the test object.
1.356 + @pre None.
1.357 + @post CDataLogger_LogInformationWithParameters_Transition is fully constructed.
1.358 + */
1.359 + CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
1.360 + TTransitionValidator& aValidator);
1.361 + /**
1.362 + @fn TransitMethodL()
1.363 + Intended Usage : To execute the CDataLogger::LogInformationWithParameters method for the test harness.
1.364 + Error Condition : Leaves with an error code.
1.365 + @leave KErrNoMemory, (@see CDataLogger::LogInformationWithParameters)
1.366 + @since 7.0
1.367 + @return None
1.368 + @pre CDataLogger_LogInformationWithParameters_Transition is fully constructed.
1.369 + @post No change in the CDataLogger_LogInformationWithParameters_Transition apart
1.370 + from iDataLogger, which may have changed state.
1.371 + (@see CDataLogger::LogInformationWithParameters post-condition) for iDataLogger's new state.
1.372 + */
1.373 + inline void TransitMethodL();
1.374 +
1.375 + /**
1.376 + @fn Context() const
1.377 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.378 + Error Condition : None.
1.379 + @since 7.0
1.380 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.381 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.382 + @post No change in the CDataLogger_LogInformationWithParameters_Transition
1.383 + */
1.384 + inline CDataLogger_UnitTestContext& Context() const;
1.385 + }; // CDataLogger_LogInformationWithParameters_Transition
1.386 +
1.387 +// ______________________________________________________________________________
1.388 +//
1.389 +/**
1.390 + @internalComponent
1.391 +
1.392 + Comments : Transition test of the CDataLogger::LogInformationWithParametersNarrow method.
1.393 + */
1.394 +class CDataLogger_LogInformationWithParametersNarrow_Transition : public CTransition
1.395 + {
1.396 +public:
1.397 + /**
1.398 + @fn CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
1.399 + TTransitionValidator& aValidator)
1.400 + Intended Usage : Standard c'tor method.
1.401 + Error Condition : None.
1.402 + @since 7.0
1.403 + @param aUTContext The context this transition is operating in.
1.404 + @param aValidator Used for checking the pre & post conditions of the test object.
1.405 + @pre None.
1.406 + @post CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
1.407 + */
1.408 + CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
1.409 + TTransitionValidator& aValidator);
1.410 + /**
1.411 + @fn TransitMethodL()
1.412 + Intended Usage : To execute the CDataLogger::LogInformationWithParametersNarrow method for the test harness.
1.413 + Error Condition : Leaves with an error code.
1.414 + @leave KErrNoMemory, (@see CDataLogger::LogInformationWithParametersNarrow)
1.415 + @since 7.0
1.416 + @return None
1.417 + @pre CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
1.418 + @post No change in the CDataLogger_LogInformationWithParametersNarrow_Transition apart
1.419 + from iDataLogger, which may have changed state.
1.420 + (@see CDataLogger::LogInformationWithParametersNarrow post-condition) for iDataLogger's new state.
1.421 + */
1.422 + inline void TransitMethodL();
1.423 +
1.424 + /**
1.425 + @fn Context() const
1.426 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.427 + Error Condition : None.
1.428 + @since 7.0
1.429 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.430 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.431 + @post No change in the CDataLogger_LogInformationWithParametersNarrow_Transition
1.432 + */
1.433 + inline CDataLogger_UnitTestContext& Context() const;
1.434 + }; // CDataLogger_LogInformationWithParametersNarrow_Transition
1.435 +
1.436 +// ______________________________________________________________________________
1.437 +//
1.438 +/**
1.439 + @internalComponent
1.440 +
1.441 + Comments : Transition test of the CDataLogger::ReportInformation method.
1.442 + */
1.443 +class CDataLogger_ReportInformation_Transition : public CTransition
1.444 + {
1.445 +public:
1.446 + /**
1.447 + @fn CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
1.448 + TTransitionValidator& aValidator)
1.449 + Intended Usage : Standard c'tor method.
1.450 + Error Condition : None.
1.451 + @since 7.0
1.452 + @param aUTContext The context this transition is operating in.
1.453 + @param aValidator Used for checking the pre & post conditions of the test object.
1.454 + @pre None.
1.455 + @post CDataLogger_ReportInformation_Transition is fully constructed.
1.456 + */
1.457 + CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
1.458 + TTransitionValidator& aValidator);
1.459 + /**
1.460 + @fn TransitMethodL()
1.461 + Intended Usage : To execute the CDataLogger::ReportInformation method for the test harness.
1.462 + Error Condition : Leaves with an error code.
1.463 + @leave KErrNoMemory, (@see CDataLogger::ReportInformation)
1.464 + @since 7.0
1.465 + @return None
1.466 + @pre CDataLogger_ReportInformation_Transition is fully constructed.
1.467 + @post No change in the CDataLogger_ReportInformation_Transition apart
1.468 + from iDataLogger, which may have changed state.
1.469 + (@see CDataLogger::ReportInformation post-condition) for iDataLogger's new state.
1.470 + */
1.471 + inline void TransitMethodL();
1.472 +
1.473 + /**
1.474 + @fn Context() const
1.475 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.476 + Error Condition : None.
1.477 + @since 7.0
1.478 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.479 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.480 + @post No change in the CDataLogger_ReportInformation_Transition
1.481 + */
1.482 + inline CDataLogger_UnitTestContext& Context() const;
1.483 + }; // CDataLogger_ReportInformation_Transition
1.484 +
1.485 +
1.486 +// ______________________________________________________________________________
1.487 +//
1.488 +/**
1.489 + @internalComponent
1.490 +
1.491 + Comments : Transition test of the CDataLogger::ReportInformationWithParameters method.
1.492 + */
1.493 +class CDataLogger_ReportInformationWithParameters_Transition : public CTransition
1.494 + {
1.495 +public:
1.496 + /**
1.497 + @fn CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
1.498 + TTransitionValidator& aValidator)
1.499 + Intended Usage : Standard c'tor method.
1.500 + Error Condition : None.
1.501 + @since 7.0
1.502 + @param aUTContext The context this transition is operating in.
1.503 + @param aValidator Used for checking the pre & post conditions of the test object.
1.504 + @pre None.
1.505 + @post CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
1.506 + */
1.507 + CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
1.508 + TTransitionValidator& aValidator);
1.509 + /**
1.510 + @fn TransitMethodL()
1.511 + Intended Usage : To execute the CDataLogger::ReportInformationWithParameters method for the test harness.
1.512 + Error Condition : Leaves with an error code.
1.513 + @leave KErrNoMemory, (@see CDataLogger::ReportInformationWithParameters)
1.514 + @since 7.0
1.515 + @return None
1.516 + @pre CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
1.517 + @post No change in the CDataLogger_ReportInformationWithParameters_Transition apart
1.518 + from iDataLogger, which may have changed state.
1.519 + (@see CDataLogger::ReportInformationWithParameters post-condition) for iDataLogger's new state.
1.520 + */
1.521 + inline void TransitMethodL();
1.522 +
1.523 + /**
1.524 + @fn Context() const
1.525 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.526 + Error Condition : None.
1.527 + @since 7.0
1.528 + @return The unit test context cast to a CDataLogger_UnitTestContext
1.529 + @pre iUTContext is a valid CDataLogger_UnitTestContext.
1.530 + @post No change in the CDataLogger_ReportInformationWithParameters_Transition
1.531 + */
1.532 + inline CDataLogger_UnitTestContext& Context() const;
1.533 + }; // CDataLogger_ReportInformationWithParameters_Transition
1.534 +
1.535 +
1.536 +// Add additional Transition class definitions here...
1.537 +
1.538 +#include "DataLoggerTransitions.inl"
1.539 +
1.540 +#include "DataLoggerUnitTestContext.inl"
1.541 +
1.542 +#endif // __DATALOGGERTRANSITIONS_H__
1.543 +