os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitions.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 CDataLogger class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __DATALOGGERTRANSITIONS_H__
sl@0
    19
#define __DATALOGGERTRANSITIONS_H__
sl@0
    20
sl@0
    21
#include "TestUtilities.h"
sl@0
    22
#include "StateAccessor.h"
sl@0
    23
#include "LeakTestTransition.h"
sl@0
    24
#include <ecom/test_bed/datalogger.h>
sl@0
    25
#include "DataLoggerStateAccessor.h"
sl@0
    26
#include <ecom/test_bed/unittest.h>
sl@0
    27
sl@0
    28
#define CTransitionType CLeakTestTransition
sl@0
    29
sl@0
    30
// ______________________________________________________________________________
sl@0
    31
//
sl@0
    32
/**
sl@0
    33
	@internalComponent
sl@0
    34
sl@0
    35
	Comments : Provide all the CDataLogger specific
sl@0
    36
	parameters and behaviour on the CDataLogger
sl@0
    37
	test class for a transition.
sl@0
    38
 */
sl@0
    39
class CDataLogger_UnitTestContext : public CUnitTestContext
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	/**
sl@0
    43
		@fn				CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    44
														MStateAccessor& aStateAccessor,
sl@0
    45
														MTransitionObserver& aObserver)
sl@0
    46
		Intended Usage	: Default constructor.
sl@0
    47
		Error Condition	: None. 
sl@0
    48
		@since			7.0
sl@0
    49
		@param			aDataLogger The output logging object.
sl@0
    50
		@param			aObserver The observer of this UnitTest's Transitions.
sl@0
    51
		@param			aStateAccessor WhiteBox state access to the CDataLogger class under test.
sl@0
    52
		@pre 			None.
sl@0
    53
		@post			CDataLogger_UnitTestContext is fully constructed, and initialised.
sl@0
    54
	*/
sl@0
    55
	inline CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
sl@0
    56
										MStateAccessor& aStateAccessor,
sl@0
    57
										MTransitionObserver& aObserver);
sl@0
    58
sl@0
    59
	/**
sl@0
    60
		@fn				~CDataLogger_UnitTestContext()
sl@0
    61
		Intended Usage	: Default Destructor
sl@0
    62
		@since			7.0
sl@0
    63
		@pre 			CDataLogger_UnitTestContext is fully constructed.
sl@0
    64
		@post			CDataLogger_UnitTestContext is fully destroyed
sl@0
    65
		*/
sl@0
    66
		virtual inline ~CDataLogger_UnitTestContext();
sl@0
    67
sl@0
    68
	/** The instance of the class under test */
sl@0
    69
	CDataLogger* iDataLogger;
sl@0
    70
	/** The logging info to be used by the data logger */
sl@0
    71
	TLoggingInfo* iLoggingInfo;
sl@0
    72
	/** The address of the start of the block to be logged */
sl@0
    73
	const TUint8* iAddress;
sl@0
    74
	/** The number of bytes to be logged */
sl@0
    75
	TInt iLength;
sl@0
    76
	/** The argument set to be logged */
sl@0
    77
	HBufC* iArg;
sl@0
    78
	/** A narrow descriptor version of the argument set to be logged */
sl@0
    79
	HBufC8* iArgNarrow;
sl@0
    80
	/** The text to be added to the report */
sl@0
    81
	const TDesC* iReportComment;
sl@0
    82
	/** The text to be formatted and added to the report */
sl@0
    83
	const TDesC* iFormatReport;
sl@0
    84
	/** The argument set to be added to the report */
sl@0
    85
	const TDesC* iReportArg;
sl@0
    86
sl@0
    87
	}; // CDataLogger_UnitTestContext
sl@0
    88
sl@0
    89
// ______________________________________________________________________________
sl@0
    90
//
sl@0
    91
/**
sl@0
    92
	@internalComponent
sl@0
    93
 
sl@0
    94
	Comments : Transition test of the CDataLogger::NewL method.
sl@0
    95
 */
sl@0
    96
class CDataLogger_NewL_Transition : public CTransitionType
sl@0
    97
	{
sl@0
    98
public:
sl@0
    99
	/**
sl@0
   100
		@fn				CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   101
																	TTransitionValidator& aValidator)
sl@0
   102
		Intended Usage	: Standard c'tor method.
sl@0
   103
		Error Condition	: None.
sl@0
   104
		@since			7.0
sl@0
   105
		@param			aUTContext The context this transition is operating in.
sl@0
   106
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   107
		@pre 			None.
sl@0
   108
		@post			CDataLogger_NewL_Transition is fully constructed.
sl@0
   109
	*/
sl@0
   110
	CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
   111
													TTransitionValidator& aValidator);
sl@0
   112
	/**
sl@0
   113
		@fn				TransitMethodL()
sl@0
   114
		Intended Usage	: To execute the CDataLogger::NewL method for the test harness.
sl@0
   115
		Error Condition	: Leaves with an error code.
sl@0
   116
		@leave  		KErrNoMemory, (@see CDataLogger::NewL)
sl@0
   117
		@since			7.0
sl@0
   118
		@return			None
sl@0
   119
		@pre 			CDataLogger_NewL_Transition is fully constructed.
sl@0
   120
		@post			No change in the CDataLogger_NewL_Transition apart
sl@0
   121
						from iDataLogger, which may have changed state.
sl@0
   122
						(@see CDataLogger::NewL post-condition) for iDataLogger's new state.
sl@0
   123
	*/
sl@0
   124
	inline void TransitMethodL();
sl@0
   125
sl@0
   126
	/**
sl@0
   127
		@fn				Context() const
sl@0
   128
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   129
		Error Condition	: None.
sl@0
   130
		@since			7.0
sl@0
   131
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   132
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   133
		@post			No change in the CDataLogger_NewL_Transition
sl@0
   134
	*/
sl@0
   135
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   136
	};	// CDataLogger_NewL_Transition
sl@0
   137
sl@0
   138
// ______________________________________________________________________________
sl@0
   139
//
sl@0
   140
/**
sl@0
   141
	@internalComponent
sl@0
   142
sl@0
   143
	Comments : Transition test of the CDataLogger::Dtor method.
sl@0
   144
 */
sl@0
   145
class CDataLogger_Dtor_Transition : public CTransition
sl@0
   146
	{
sl@0
   147
public:
sl@0
   148
	/**
sl@0
   149
		@fn				CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   150
																	TTransitionValidator& aValidator)
sl@0
   151
		Intended Usage	: Standard c'tor method.
sl@0
   152
		Error Condition	: None.
sl@0
   153
		@since			7.0
sl@0
   154
		@param			aUTContext The context this transition is operating in.
sl@0
   155
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   156
		@pre 			None.
sl@0
   157
		@post			CDataLogger_Dtor_Transition is fully constructed.
sl@0
   158
	*/
sl@0
   159
	CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
   160
													TTransitionValidator& aValidator);
sl@0
   161
	/**
sl@0
   162
		@fn				TransitMethodL()
sl@0
   163
		Intended Usage	: To execute the CDataLogger::Dtor method for the test harness.
sl@0
   164
		Error Condition	: Leaves with an error code.
sl@0
   165
		@leave  		KErrNoMemory, (@see CDataLogger::Dtor)
sl@0
   166
		@since			7.0
sl@0
   167
		@return			None
sl@0
   168
		@pre 			CDataLogger_Dtor_Transition is fully constructed.
sl@0
   169
		@post			No change in the CDataLogger_Dtor_Transition apart
sl@0
   170
						from iDataLogger, which may have changed state.
sl@0
   171
						(@see CDataLogger::Dtor post-condition) for iDataLogger's new state.
sl@0
   172
	*/
sl@0
   173
	inline void TransitMethodL();
sl@0
   174
sl@0
   175
	/**
sl@0
   176
		@fn				Context() const
sl@0
   177
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   178
		Error Condition	: None.
sl@0
   179
		@since			7.0
sl@0
   180
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   181
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   182
		@post			No change in the CDataLogger_Dtor_Transition
sl@0
   183
	*/
sl@0
   184
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   185
	};	// CDataLogger_Dtor_Transition
sl@0
   186
sl@0
   187
// ______________________________________________________________________________
sl@0
   188
//
sl@0
   189
/**
sl@0
   190
	@internalComponent
sl@0
   191
sl@0
   192
	Comments : Transition test of the CDataLogger::DumpMemoryBlock method.
sl@0
   193
 */
sl@0
   194
class CDataLogger_DumpMemoryBlock_Transition : public CTransition
sl@0
   195
	{
sl@0
   196
public:
sl@0
   197
	/**
sl@0
   198
		@fn				CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
sl@0
   199
																	TTransitionValidator& aValidator)
sl@0
   200
		Intended Usage	: Standard c'tor method.
sl@0
   201
		Error Condition	: None.
sl@0
   202
		@since			7.0
sl@0
   203
		@param			aUTContext The context this transition is operating in.
sl@0
   204
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   205
		@pre 			None.
sl@0
   206
		@post			CDataLogger_DumpMemoryBlock_Transition is fully constructed.
sl@0
   207
	*/
sl@0
   208
	CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
sl@0
   209
													TTransitionValidator& aValidator);
sl@0
   210
	/**
sl@0
   211
		@fn				TransitMethodL()
sl@0
   212
		Intended Usage	: To execute the CDataLogger::DumpMemoryBlock method for the test harness.
sl@0
   213
		Error Condition	: Leaves with an error code.
sl@0
   214
		@leave  		KErrNoMemory, (@see CDataLogger::DumpMemoryBlock)
sl@0
   215
		@since			7.0
sl@0
   216
		@return			None
sl@0
   217
		@pre 			CDataLogger_DumpMemoryBlock_Transition is fully constructed.
sl@0
   218
		@post			No change in the CDataLogger_DumpMemoryBlock_Transition apart
sl@0
   219
						from iDataLogger, which may have changed state.
sl@0
   220
						(@see CDataLogger::DumpMemoryBlock post-condition) for iDataLogger's new state.
sl@0
   221
	*/
sl@0
   222
	inline void TransitMethodL();
sl@0
   223
sl@0
   224
	/**
sl@0
   225
		@fn				Context() const
sl@0
   226
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   227
		Error Condition	: None.
sl@0
   228
		@since			7.0
sl@0
   229
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   230
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   231
		@post			No change in the CDataLogger_DumpMemoryBlock_Transition
sl@0
   232
	*/
sl@0
   233
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   234
	};	// CDataLogger_DumpMemoryBlock_Transition
sl@0
   235
sl@0
   236
sl@0
   237
// ______________________________________________________________________________
sl@0
   238
//
sl@0
   239
/**
sl@0
   240
	@internalComponent
sl@0
   241
sl@0
   242
	Comments : Transition test of the CDataLogger::LogInformation method.
sl@0
   243
 */
sl@0
   244
class CDataLogger_LogInformation_Transition : public CTransition
sl@0
   245
	{
sl@0
   246
public:
sl@0
   247
	/**
sl@0
   248
		@fn				CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
sl@0
   249
																	TTransitionValidator& aValidator)
sl@0
   250
		Intended Usage	: Standard c'tor method.
sl@0
   251
		Error Condition	: None.
sl@0
   252
		@since			7.0
sl@0
   253
		@param			aUTContext The context this transition is operating in.
sl@0
   254
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   255
		@pre 			None.
sl@0
   256
		@post			CDataLogger_LogInformation_Transition is fully constructed.
sl@0
   257
	*/
sl@0
   258
	CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
sl@0
   259
													TTransitionValidator& aValidator);
sl@0
   260
	/**
sl@0
   261
		@fn				TransitMethodL()
sl@0
   262
		Intended Usage	: To execute the CDataLogger::LogInformation method for the test harness.
sl@0
   263
		Error Condition	: Leaves with an error code.
sl@0
   264
		@leave  		KErrNoMemory, (@see CDataLogger::LogInformation)
sl@0
   265
		@since			7.0
sl@0
   266
		@return			None
sl@0
   267
		@pre 			CDataLogger_LogInformation_Transition is fully constructed.
sl@0
   268
		@post			No change in the CDataLogger_LogInformation_Transition apart
sl@0
   269
						from iDataLogger, which may have changed state.
sl@0
   270
						(@see CDataLogger::LogInformation post-condition) for iDataLogger's new state.
sl@0
   271
	*/
sl@0
   272
	inline void TransitMethodL();
sl@0
   273
sl@0
   274
	/**
sl@0
   275
		@fn				Context() const
sl@0
   276
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   277
		Error Condition	: None.
sl@0
   278
		@since			7.0
sl@0
   279
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   280
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   281
		@post			No change in the CDataLogger_LogInformation_Transition
sl@0
   282
	*/
sl@0
   283
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   284
	};	// CDataLogger_LogInformation_Transition
sl@0
   285
sl@0
   286
// ______________________________________________________________________________
sl@0
   287
//
sl@0
   288
/**
sl@0
   289
	@internalComponent
sl@0
   290
sl@0
   291
	Comments : Transition test of the CDataLogger::LogInformationNarrow method.
sl@0
   292
 */
sl@0
   293
class CDataLogger_LogInformationNarrow_Transition : public CTransition
sl@0
   294
	{
sl@0
   295
public:
sl@0
   296
	/**
sl@0
   297
		@fn				CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
sl@0
   298
																	TTransitionValidator& aValidator)
sl@0
   299
		Intended Usage	: Standard c'tor method.
sl@0
   300
		Error Condition	: None.
sl@0
   301
		@since			7.0
sl@0
   302
		@param			aUTContext The context this transition is operating in.
sl@0
   303
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   304
		@pre 			None.
sl@0
   305
		@post			CDataLogger_LogInformationNarrow_Transition is fully constructed.
sl@0
   306
	*/
sl@0
   307
	CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
sl@0
   308
													TTransitionValidator& aValidator);
sl@0
   309
	/**
sl@0
   310
		@fn				TransitMethodL()
sl@0
   311
		Intended Usage	: To execute the CDataLogger::LogInformationNarrow method for the test harness.
sl@0
   312
		Error Condition	: Leaves with an error code.
sl@0
   313
		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationNarrow)
sl@0
   314
		@since			7.0
sl@0
   315
		@return			None
sl@0
   316
		@pre 			CDataLogger_LogInformationNarrow_Transition is fully constructed.
sl@0
   317
		@post			No change in the CDataLogger_LogInformationNarrow_Transition apart
sl@0
   318
						from iDataLogger, which may have changed state.
sl@0
   319
						(@see CDataLogger::LogInformationNarrow post-condition) for iDataLogger's new state.
sl@0
   320
	*/
sl@0
   321
	inline void TransitMethodL();
sl@0
   322
sl@0
   323
	/**
sl@0
   324
		@fn				Context() const
sl@0
   325
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   326
		Error Condition	: None.
sl@0
   327
		@since			7.0
sl@0
   328
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   329
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   330
		@post			No change in the CDataLogger_LogInformationNarrow_Transition
sl@0
   331
	*/
sl@0
   332
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   333
	};	// CDataLogger_LogInformationNarrow_Transition
sl@0
   334
sl@0
   335
// ______________________________________________________________________________
sl@0
   336
//
sl@0
   337
/**
sl@0
   338
	@internalComponent
sl@0
   339
sl@0
   340
	Comments : Transition test of the CDataLogger::LogInformationWithParameters method.
sl@0
   341
 */
sl@0
   342
class CDataLogger_LogInformationWithParameters_Transition : public CTransition
sl@0
   343
	{
sl@0
   344
public:
sl@0
   345
	/**
sl@0
   346
		@fn				CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
sl@0
   347
																	TTransitionValidator& aValidator)
sl@0
   348
		Intended Usage	: Standard c'tor method.
sl@0
   349
		Error Condition	: None.
sl@0
   350
		@since			7.0
sl@0
   351
		@param			aUTContext The context this transition is operating in.
sl@0
   352
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   353
		@pre 			None.
sl@0
   354
		@post			CDataLogger_LogInformationWithParameters_Transition is fully constructed.
sl@0
   355
	*/
sl@0
   356
	CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
sl@0
   357
													TTransitionValidator& aValidator);
sl@0
   358
	/**
sl@0
   359
		@fn				TransitMethodL()
sl@0
   360
		Intended Usage	: To execute the CDataLogger::LogInformationWithParameters method for the test harness.
sl@0
   361
		Error Condition	: Leaves with an error code.
sl@0
   362
		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationWithParameters)
sl@0
   363
		@since			7.0
sl@0
   364
		@return			None
sl@0
   365
		@pre 			CDataLogger_LogInformationWithParameters_Transition is fully constructed.
sl@0
   366
		@post			No change in the CDataLogger_LogInformationWithParameters_Transition apart
sl@0
   367
						from iDataLogger, which may have changed state.
sl@0
   368
						(@see CDataLogger::LogInformationWithParameters post-condition) for iDataLogger's new state.
sl@0
   369
	*/
sl@0
   370
	inline void TransitMethodL();
sl@0
   371
sl@0
   372
	/**
sl@0
   373
		@fn				Context() const
sl@0
   374
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   375
		Error Condition	: None.
sl@0
   376
		@since			7.0
sl@0
   377
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   378
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   379
		@post			No change in the CDataLogger_LogInformationWithParameters_Transition
sl@0
   380
	*/
sl@0
   381
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   382
	};	// CDataLogger_LogInformationWithParameters_Transition
sl@0
   383
sl@0
   384
// ______________________________________________________________________________
sl@0
   385
//
sl@0
   386
/**
sl@0
   387
	@internalComponent
sl@0
   388
sl@0
   389
	Comments : Transition test of the CDataLogger::LogInformationWithParametersNarrow method.
sl@0
   390
 */
sl@0
   391
class CDataLogger_LogInformationWithParametersNarrow_Transition : public CTransition
sl@0
   392
	{
sl@0
   393
public:
sl@0
   394
	/**
sl@0
   395
		@fn				CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
sl@0
   396
																	TTransitionValidator& aValidator)
sl@0
   397
		Intended Usage	: Standard c'tor method.
sl@0
   398
		Error Condition	: None.
sl@0
   399
		@since			7.0
sl@0
   400
		@param			aUTContext The context this transition is operating in.
sl@0
   401
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   402
		@pre 			None.
sl@0
   403
		@post			CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
sl@0
   404
	*/
sl@0
   405
	CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
sl@0
   406
													TTransitionValidator& aValidator);
sl@0
   407
	/**
sl@0
   408
		@fn				TransitMethodL()
sl@0
   409
		Intended Usage	: To execute the CDataLogger::LogInformationWithParametersNarrow method for the test harness.
sl@0
   410
		Error Condition	: Leaves with an error code.
sl@0
   411
		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationWithParametersNarrow)
sl@0
   412
		@since			7.0
sl@0
   413
		@return			None
sl@0
   414
		@pre 			CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
sl@0
   415
		@post			No change in the CDataLogger_LogInformationWithParametersNarrow_Transition apart
sl@0
   416
						from iDataLogger, which may have changed state.
sl@0
   417
						(@see CDataLogger::LogInformationWithParametersNarrow post-condition) for iDataLogger's new state.
sl@0
   418
	*/
sl@0
   419
	inline void TransitMethodL();
sl@0
   420
sl@0
   421
	/**
sl@0
   422
		@fn				Context() const
sl@0
   423
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   424
		Error Condition	: None.
sl@0
   425
		@since			7.0
sl@0
   426
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   427
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   428
		@post			No change in the CDataLogger_LogInformationWithParametersNarrow_Transition
sl@0
   429
	*/
sl@0
   430
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   431
	};	// CDataLogger_LogInformationWithParametersNarrow_Transition
sl@0
   432
sl@0
   433
// ______________________________________________________________________________
sl@0
   434
//
sl@0
   435
/**
sl@0
   436
	@internalComponent
sl@0
   437
sl@0
   438
	Comments : Transition test of the CDataLogger::ReportInformation method.
sl@0
   439
 */
sl@0
   440
class CDataLogger_ReportInformation_Transition : public CTransition
sl@0
   441
	{
sl@0
   442
public:
sl@0
   443
	/**
sl@0
   444
		@fn				CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
sl@0
   445
																	TTransitionValidator& aValidator)
sl@0
   446
		Intended Usage	: Standard c'tor method.
sl@0
   447
		Error Condition	: None.
sl@0
   448
		@since			7.0
sl@0
   449
		@param			aUTContext The context this transition is operating in.
sl@0
   450
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   451
		@pre 			None.
sl@0
   452
		@post			CDataLogger_ReportInformation_Transition is fully constructed.
sl@0
   453
	*/
sl@0
   454
	CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
sl@0
   455
													TTransitionValidator& aValidator);
sl@0
   456
	/**
sl@0
   457
		@fn				TransitMethodL()
sl@0
   458
		Intended Usage	: To execute the CDataLogger::ReportInformation method for the test harness.
sl@0
   459
		Error Condition	: Leaves with an error code.
sl@0
   460
		@leave  		KErrNoMemory, (@see CDataLogger::ReportInformation)
sl@0
   461
		@since			7.0
sl@0
   462
		@return			None
sl@0
   463
		@pre 			CDataLogger_ReportInformation_Transition is fully constructed.
sl@0
   464
		@post			No change in the CDataLogger_ReportInformation_Transition apart
sl@0
   465
						from iDataLogger, which may have changed state.
sl@0
   466
						(@see CDataLogger::ReportInformation post-condition) for iDataLogger's new state.
sl@0
   467
	*/
sl@0
   468
	inline void TransitMethodL();
sl@0
   469
sl@0
   470
	/**
sl@0
   471
		@fn				Context() const
sl@0
   472
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   473
		Error Condition	: None.
sl@0
   474
		@since			7.0
sl@0
   475
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   476
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   477
		@post			No change in the CDataLogger_ReportInformation_Transition
sl@0
   478
	*/
sl@0
   479
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   480
	};	// CDataLogger_ReportInformation_Transition
sl@0
   481
sl@0
   482
sl@0
   483
// ______________________________________________________________________________
sl@0
   484
//
sl@0
   485
/**
sl@0
   486
	@internalComponent
sl@0
   487
	
sl@0
   488
	Comments : Transition test of the CDataLogger::ReportInformationWithParameters method.
sl@0
   489
 */
sl@0
   490
class CDataLogger_ReportInformationWithParameters_Transition : public CTransition
sl@0
   491
	{
sl@0
   492
public:
sl@0
   493
	/**
sl@0
   494
		@fn				CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
sl@0
   495
																	TTransitionValidator& aValidator)
sl@0
   496
		Intended Usage	: Standard c'tor method.
sl@0
   497
		Error Condition	: None.
sl@0
   498
		@since			7.0
sl@0
   499
		@param			aUTContext The context this transition is operating in.
sl@0
   500
		@param			aValidator Used for checking the pre & post conditions of the test object.
sl@0
   501
		@pre 			None.
sl@0
   502
		@post			CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
sl@0
   503
	*/
sl@0
   504
	CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
sl@0
   505
													TTransitionValidator& aValidator);
sl@0
   506
	/**
sl@0
   507
		@fn				TransitMethodL()
sl@0
   508
		Intended Usage	: To execute the CDataLogger::ReportInformationWithParameters method for the test harness.
sl@0
   509
		Error Condition	: Leaves with an error code.
sl@0
   510
		@leave  		KErrNoMemory, (@see CDataLogger::ReportInformationWithParameters)
sl@0
   511
		@since			7.0
sl@0
   512
		@return			None
sl@0
   513
		@pre 			CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
sl@0
   514
		@post			No change in the CDataLogger_ReportInformationWithParameters_Transition apart
sl@0
   515
						from iDataLogger, which may have changed state.
sl@0
   516
						(@see CDataLogger::ReportInformationWithParameters post-condition) for iDataLogger's new state.
sl@0
   517
	*/
sl@0
   518
	inline void TransitMethodL();
sl@0
   519
sl@0
   520
	/**
sl@0
   521
		@fn				Context() const
sl@0
   522
		Intended Usage	: To provide access to the unit test context cast to the correct type.
sl@0
   523
		Error Condition	: None.
sl@0
   524
		@since			7.0
sl@0
   525
		@return			The unit test context cast to a CDataLogger_UnitTestContext
sl@0
   526
		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
sl@0
   527
		@post			No change in the CDataLogger_ReportInformationWithParameters_Transition
sl@0
   528
	*/
sl@0
   529
	inline CDataLogger_UnitTestContext& Context() const;
sl@0
   530
	};	// CDataLogger_ReportInformationWithParameters_Transition
sl@0
   531
sl@0
   532
sl@0
   533
// Add additional Transition class definitions here...
sl@0
   534
sl@0
   535
#include "DataLoggerTransitions.inl"
sl@0
   536
sl@0
   537
#include "DataLoggerUnitTestContext.inl"
sl@0
   538
sl@0
   539
#endif // __DATALOGGERTRANSITIONS_H__
sl@0
   540