os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitions.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererTransitions.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,732 @@
     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 transitions over the methods in the CDiscoverer class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __DISCOVERERTRANSITIONS_H__
    1.22 +#define __DISCOVERERTRANSITIONS_H__
    1.23 +
    1.24 +#include "StateAccessor.h"
    1.25 +#include "LeakTestTransition.h"
    1.26 +#include <test_bed/datalogger.h>
    1.27 +#include "Discoverer.h"
    1.28 +#include "DiscovererStateAccessor.h"
    1.29 +#include <test_bed/unittest.h>
    1.30 +
    1.31 +class CObserverStub;
    1.32 +
    1.33 +#define CTransitionType CLeakTestTransition
    1.34 +
    1.35 +// ______________________________________________________________________________
    1.36 +//
    1.37 +/**
    1.38 +	@internalComponent
    1.39 +	Comments : Provide all the CreateAndDestroyUnit Test's specific
    1.40 +	parameters and behaviour on the CDiscoverer
    1.41 +	test class for a transition.
    1.42 + */
    1.43 +class CDiscoverer_UnitTestContext : public CUnitTestContext
    1.44 +	{
    1.45 +public:
    1.46 +	/**
    1.47 +		@fn				CDiscoverer_UnitTestContext(CDataLogger& aDataLogger,
    1.48 +														MStateAccessor& aStateAccessor,
    1.49 +														MTransitionObserver& aObserver,
    1.50 +														RFs& aFs)
    1.51 +		Intended Usage	: Default constructor.
    1.52 +		Error Condition	: None. 
    1.53 +		@since			7.0
    1.54 +		@param			aDataLogger The output logging object.
    1.55 +		@param			aObserver The observer of this UnitTest's Transitions.
    1.56 +		@param			aStateAccessor WhiteBox state access to the CDiscoverer class under test.
    1.57 +		@param			aFs A reference to an connected file server instance.
    1.58 +		@pre 			None.
    1.59 +		@post			CDiscoverer_UnitTestContext is fully constructed, and initialised.
    1.60 +	*/
    1.61 +	CDiscoverer_UnitTestContext(CDataLogger& aDataLogger,
    1.62 +								MStateAccessor& aStateAccessor,
    1.63 +								MTransitionObserver& aObserver,
    1.64 +								RFs& aFs);
    1.65 +
    1.66 +	/**
    1.67 +		@fn				CDiscoverer_UnitTestContext::~CDiscoverer_UnitTestContext()
    1.68 +		Intended Usage	: Default Destructor	
    1.69 +		@since			7.0
    1.70 +		@pre 			CDiscoverer_UnitTestContext is fully constructed
    1.71 +		@post			CDiscoverer_UnitTestContext is fully destroyed
    1.72 +	 */
    1.73 +	virtual ~CDiscoverer_UnitTestContext();
    1.74 +
    1.75 +	/**
    1.76 +		@fn				DiscovererObserver()
    1.77 +		Intended Usage	: Discoverer Observer acessor	
    1.78 +		@since			7.0
    1.79 +		@return			MDiscovererObserver& A reference to the observer interface 
    1.80 +						to be used for this unit test
    1.81 +		@pre 			CDiscoverer_UnitTestContext is fully constructed
    1.82 +		@post			CDiscoverer_UnitTestContext is fully destroyed
    1.83 +	 */
    1.84 +	MDiscovererObserver& DiscovererObserver();
    1.85 +
    1.86 +	/** The instance of the class under test */
    1.87 +	CDiscoverer* iDiscoverer;
    1.88 +	/** A reference to the observer stub of the CDiscoverer */
    1.89 +	CObserverStub* iDiscovererObserver;
    1.90 +	/** A reference to an connected file server instance. */
    1.91 +	RFs& iFs;
    1.92 +	/** A Dir object referring to the discovery directory file list */
    1.93 +	CDir* iDir;
    1.94 +	/** A parse referring to a DLL's file path */
    1.95 +	TParse iPath;
    1.96 +	/** A modified TEntry referring to a DLL */
    1.97 +	TEntry* iReturnedFileEntry;
    1.98 +	/** A drive letter referring to the mounted / unmounted drive */
    1.99 +	TDriveUnit iDriveUnit;
   1.100 +	/** A status pointer for signalling async completion from the stub routines */
   1.101 +	TRequestStatus* iNotificationStatus;
   1.102 +	}; // CDiscoverer_UnitTestContext
   1.103 +
   1.104 +// ______________________________________________________________________________
   1.105 +//
   1.106 +/**
   1.107 +	@internalComponent
   1.108 +	Comments : Transition test of the CDiscoverer::NewL method.
   1.109 + */
   1.110 +class CDiscoverer_NewL_Transition : public CTransitionType
   1.111 +	{
   1.112 +public:
   1.113 +	/**
   1.114 +		@fn				CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
   1.115 +													TTransitionValidator& aValidator)
   1.116 +		Intended Usage	: Standard c'tor method.
   1.117 +		Error Condition	: None.
   1.118 +		@since			7.0
   1.119 +		@param			Discoverer_CreateAndDestroy_UnitTestContext 
   1.120 +						The parameters to use for test purposes. 
   1.121 +		@pre 			None.
   1.122 +		@post			CDiscoverer_NewL_Transition is fully constructed.
   1.123 +	*/
   1.124 +	inline CDiscoverer_NewL_Transition(CUnitTestContext& aUTContext,
   1.125 +								TTransitionValidator& aValidator);
   1.126 +	/**
   1.127 +		@fn				TransitMethodL()
   1.128 +		Intended Usage	: To execute the CDiscoverer::NewL method for the test harness.
   1.129 +		Error Condition	: Leaves with an error code.
   1.130 +		@leave			KErrNoMemory, (@see CDiscoverer::NewL)
   1.131 +		@since			7.0
   1.132 +		@return			None
   1.133 +		@pre 			CDiscoverer_NewL_Transition is fully constructed.
   1.134 +		@post			No change in the CDiscoverer_NewL_Transition apart
   1.135 +						from iDiscoverer, which may have changed state.
   1.136 +						(@see CDiscoverer::NewL post-condition) for iDiscoverer's new state.
   1.137 +	*/
   1.138 +	inline void TransitMethodL();
   1.139 +
   1.140 +	/**
   1.141 +		@fn				inline CDiscoverer_UnitTestContext& Context() const
   1.142 +		Intended Usage	: Obtain the context for this unit test
   1.143 +		@since			7.0
   1.144 +		@return			CDiscoverer_UnitTestContext& The unit test context object.
   1.145 +		@pre 			CDiscoverer_NewL_Transition is fully constructed.
   1.146 +	 */
   1.147 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.148 +	};	// CDiscoverer_NewL_Transition
   1.149 +
   1.150 +// ______________________________________________________________________________
   1.151 +//
   1.152 +/**
   1.153 +	@internalComponent
   1.154 +	Comments : Transition test of the CDiscoverer::Dtor method.
   1.155 +
   1.156 + */
   1.157 +class CDiscoverer_Dtor_Transition : public CTransition
   1.158 +	{
   1.159 +public:
   1.160 +	/**
   1.161 +		@fn				CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
   1.162 +																	TTransitionValidator& aValidator)
   1.163 +		Intended Usage	: Standard c'tor method.
   1.164 +		Error Condition	: None.
   1.165 +		@since			7.0
   1.166 +		@param			Discoverer_CreateAndDestroy_UnitTestContext 
   1.167 +						The parameters to use for test purposes. 
   1.168 +		@pre 			None.
   1.169 +		@post			CDiscoverer_Dtor_Transition is fully constructed.
   1.170 +	*/
   1.171 +	inline CDiscoverer_Dtor_Transition(CUnitTestContext& aUTContext,
   1.172 +																	TTransitionValidator& aValidator);
   1.173 +	/**
   1.174 +		@fn				TransitMethodL()
   1.175 +		Intended Usage	: To execute the CDiscoverer::Dtor method for the test harness.
   1.176 +		Error Condition	: Leaves with an error code.
   1.177 +		@leave			KErrNoMemory, (@see CDiscoverer::Dtor)
   1.178 +		@since			7.0
   1.179 +		@return			None
   1.180 +		@pre 			CDiscoverer_Dtor_Transition is fully constructed.
   1.181 +		@post			No change in the CDiscoverer_Dtor_Transition apart
   1.182 +						from iDiscoverer, which may have changed state.
   1.183 +						(@see CDiscoverer::Dtor post-condition) for iDiscoverer's new state.
   1.184 +	*/
   1.185 +	inline void TransitMethodL();
   1.186 +
   1.187 +	/**
   1.188 +		@fn				inline CDiscoverer_UnitTestContext& Context() const
   1.189 +		Intended Usage	: Obtain the context for this unit test
   1.190 +		@since			7.0
   1.191 +		@return			CDiscoverer_UnitTestContext& The unit test context object.
   1.192 +		@pre 			CDiscoverer_Dtor_Transition is fully constructed.
   1.193 +	 */
   1.194 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.195 +	};	// CDiscoverer_Dtor_Transition
   1.196 +
   1.197 +// ______________________________________________________________________________
   1.198 +//
   1.199 +/**
   1.200 +	@internalComponent
   1.201 +	Comments : Transition test of the CDiscoverer::Resume method.
   1.202 + */
   1.203 +class CDiscoverer_Resume_Transition : public CTransition
   1.204 +	{
   1.205 +public:
   1.206 +	/**
   1.207 +		@fn				CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
   1.208 +																	TTransitionValidator& aValidator)
   1.209 +		Intended Usage	: Standard c'tor method.
   1.210 +		Error Condition	: None.
   1.211 +		@since			7.0
   1.212 +		@param			aUTContext The context this transition is operating in.
   1.213 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.214 +		@pre 			None.
   1.215 +		@post			CDiscoverer_Resume_Transition is fully constructed.
   1.216 +	*/
   1.217 +	inline CDiscoverer_Resume_Transition(CUnitTestContext& aUTContext,
   1.218 +													TTransitionValidator& aValidator);
   1.219 +	/**
   1.220 +		@fn				TransitMethodL()
   1.221 +		Intended Usage	: To execute the CDiscoverer::Resume method for the test harness.
   1.222 +		Error Condition	: Leaves with an error code.
   1.223 +		@leave			KErrNoMemory, (@see CDiscoverer::Resume)
   1.224 +		@since			7.0
   1.225 +		@return			None
   1.226 +		@pre 			CDiscoverer_Resume_Transition is fully constructed.
   1.227 +		@post			No change in the CDiscoverer_Resume_Transition apart
   1.228 +						from iDiscoverer, which may have changed state.
   1.229 +						(@see CDiscoverer::Resume post-condition) for iDiscoverer's new state.
   1.230 +	*/
   1.231 +	inline void TransitMethodL();
   1.232 +
   1.233 +	/**
   1.234 +		@fn				Context() const
   1.235 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.236 +		Error Condition	: None.
   1.237 +		@since			7.0
   1.238 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.239 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.240 +		@post			No change in the CDiscoverer_Resume_Transition
   1.241 +	*/
   1.242 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.243 +	};	// CDiscoverer_Resume_Transition
   1.244 +
   1.245 +// ______________________________________________________________________________
   1.246 +//
   1.247 +/**
   1.248 +	@internalComponent
   1.249 +	Comments : Transition test of the CDiscoverer::Suspend method.
   1.250 + */
   1.251 +class CDiscoverer_Suspend_Transition : public CTransition
   1.252 +	{
   1.253 +public:
   1.254 +	/**
   1.255 +		@fn				CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
   1.256 +																	TTransitionValidator& aValidator)
   1.257 +		Intended Usage	: Standard c'tor method.
   1.258 +		Error Condition	: None.
   1.259 +		@since			7.0
   1.260 +		@param			aUTContext The context this transition is operating in.
   1.261 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.262 +		@pre 			None.
   1.263 +		@post			CDiscoverer_Suspend_Transition is fully constructed.
   1.264 +	*/
   1.265 +	inline CDiscoverer_Suspend_Transition(CUnitTestContext& aUTContext,
   1.266 +													TTransitionValidator& aValidator);
   1.267 +	/**
   1.268 +		@fn				TransitMethodL()
   1.269 +		Intended Usage	: To execute the CDiscoverer::Suspend method for the test harness.
   1.270 +		Error Condition	: Leaves with an error code.
   1.271 +		@leave			KErrNoMemory, (@see CDiscoverer::Suspend)
   1.272 +		@since			7.0
   1.273 +		@return			None
   1.274 +		@pre 			CDiscoverer_Suspend_Transition is fully constructed.
   1.275 +		@post			No change in the CDiscoverer_Suspend_Transition apart
   1.276 +						from iDiscoverer, which may have changed state.
   1.277 +						(@see CDiscoverer::Suspend post-condition) for iDiscoverer's new state.
   1.278 +	*/
   1.279 +	inline void TransitMethodL();
   1.280 +
   1.281 +	/**
   1.282 +		@fn				Context() const
   1.283 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.284 +		Error Condition	: None.
   1.285 +		@since			7.0
   1.286 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.287 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.288 +		@post			No change in the CDiscoverer_Suspend_Transition
   1.289 +	*/
   1.290 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.291 +	};	// CDiscoverer_Suspend_Transition
   1.292 +
   1.293 +// CDiscoverer internal transitions
   1.294 +
   1.295 +// ______________________________________________________________________________
   1.296 +//
   1.297 +/**
   1.298 +	@internalComponent
   1.299 +	Comments : Transition test of the CDiscoverer::Notification method.
   1.300 +
   1.301 + */
   1.302 +class CDiscoverer_Notification_Transition : public CTransition
   1.303 +	{
   1.304 +public:
   1.305 +	/**
   1.306 +		@fn				CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
   1.307 +																	TTransitionValidator& aValidator)
   1.308 +		Intended Usage	: Standard c'tor method.
   1.309 +		Error Condition	: None.
   1.310 +		@since			7.0
   1.311 +		@param			aUTContext The context this transition is operating in.
   1.312 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.313 +		@pre 			None.
   1.314 +		@post			CDiscoverer_Notification_Transition is fully constructed.
   1.315 +	*/
   1.316 +	inline CDiscoverer_Notification_Transition(CUnitTestContext& aUTContext,
   1.317 +													TTransitionValidator& aValidator);
   1.318 +	/**
   1.319 +		@fn				TransitMethodL()
   1.320 +		Intended Usage	: To execute the CDiscoverer::Notification method for the test harness.
   1.321 +		Error Condition	: Leaves with an error code.
   1.322 +		@leave			KErrNoMemory, (@see CDiscoverer::Notification)
   1.323 +		@since			7.0
   1.324 +		@return			None
   1.325 +		@pre 			CDiscoverer_Notification_Transition is fully constructed.
   1.326 +		@post			No change in the CDiscoverer_Notification_Transition apart
   1.327 +						from iDiscoverer, which may have changed state.
   1.328 +						(@see CDiscoverer::Notification post-condition) for iDiscoverer's new state.
   1.329 +	*/
   1.330 +	inline void TransitMethodL();
   1.331 +
   1.332 +	/**
   1.333 +		@fn				Context() const
   1.334 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.335 +		Error Condition	: None.
   1.336 +		@since			7.0
   1.337 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.338 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.339 +		@post			No change in the CDiscoverer_Notification_Transition
   1.340 +	*/
   1.341 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.342 +	};	// CDiscoverer_Notification_Transition
   1.343 +
   1.344 +// ______________________________________________________________________________
   1.345 +//
   1.346 +/**
   1.347 +	@internalComponent
   1.348 +	Comments : Transition test of the CDiscoverer::ScanDirectoryL method.
   1.349 +
   1.350 + */
   1.351 +class CDiscoverer_ScanDirectoryL_Transition : public CTransitionType
   1.352 +	{
   1.353 +public:
   1.354 +	/**
   1.355 +		@fn				CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
   1.356 +																	TTransitionValidator& aValidator)
   1.357 +		Intended Usage	: Standard c'tor method.
   1.358 +		Error Condition	: None.
   1.359 +		@since			7.0
   1.360 +		@param			aUTContext The context this transition is operating in.
   1.361 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.362 +		@pre 			None.
   1.363 +		@post			CDiscoverer_ScanDirectoryL_Transition is fully constructed.
   1.364 +	*/
   1.365 +	CDiscoverer_ScanDirectoryL_Transition(CUnitTestContext& aUTContext,
   1.366 +													TTransitionValidator& aValidator);
   1.367 +	/**
   1.368 +		@fn				TransitMethodL()
   1.369 +		Intended Usage	: To execute the CDiscoverer::ScanDirectoryL method for the test harness.
   1.370 +		Error Condition	: Leaves with an error code.
   1.371 +		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryL)
   1.372 +		@since			7.0
   1.373 +		@return			None
   1.374 +		@pre 			CDiscoverer_ScanDirectoryL_Transition is fully constructed.
   1.375 +		@post			No change in the CDiscoverer_ScanDirectoryL_Transition apart
   1.376 +						from iDiscoverer, which may have changed state.
   1.377 +						(@see CDiscoverer::ScanDirectoryL post-condition) for iDiscoverer's new state.
   1.378 +	*/
   1.379 +	inline void TransitMethodL();
   1.380 +
   1.381 +	/**
   1.382 +		@fn				Context() const
   1.383 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.384 +		Error Condition	: None.
   1.385 +		@since			7.0
   1.386 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.387 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.388 +		@post			No change in the CDiscoverer_ScanDirectoryL_Transition
   1.389 +	*/
   1.390 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.391 +	};	// CDiscoverer_ScanDirectoryL_Transition
   1.392 +
   1.393 +// ______________________________________________________________________________
   1.394 +//
   1.395 +/**
   1.396 +	@internalComponent
   1.397 +	Comments : Transition test of the CDiscoverer::ScanDirectoryIncrementL method.
   1.398 +
   1.399 + */
   1.400 +class CDiscoverer_ScanDirectoryIncrementL_Transition : public CTransitionType
   1.401 +	{
   1.402 +public:
   1.403 +	/**
   1.404 +		@fn				CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
   1.405 +																	TTransitionValidator& aValidator)
   1.406 +		Intended Usage	: Standard c'tor method.
   1.407 +		Error Condition	: None.
   1.408 +		@since			7.0
   1.409 +		@param			aUTContext The context this transition is operating in.
   1.410 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.411 +		@pre 			None.
   1.412 +		@post			CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
   1.413 +	*/
   1.414 +	CDiscoverer_ScanDirectoryIncrementL_Transition(CUnitTestContext& aUTContext,
   1.415 +													TTransitionValidator& aValidator);
   1.416 +	/**
   1.417 +		@fn				TransitMethodL()
   1.418 +		Intended Usage	: To execute the CDiscoverer::ScanDirectoryIncrementL method for the test harness.
   1.419 +		Error Condition	: Leaves with an error code.
   1.420 +		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryIncrementL)
   1.421 +		@since			7.0
   1.422 +		@return			None
   1.423 +		@pre 			CDiscoverer_ScanDirectoryIncrementL_Transition is fully constructed.
   1.424 +		@post			No change in the CDiscoverer_ScanDirectoryIncrementL_Transition apart
   1.425 +						from iDiscoverer, which may have changed state.
   1.426 +						(@see CDiscoverer::ScanDirectoryIncrementL post-condition) for iDiscoverer's new state.
   1.427 +	*/
   1.428 +	inline void TransitMethodL();
   1.429 +
   1.430 +	/**
   1.431 +		@fn				Context() const
   1.432 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.433 +		Error Condition	: None.
   1.434 +		@since			7.0
   1.435 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.436 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.437 +		@post			No change in the CDiscoverer_ScanDirectoryIncrementL_Transition
   1.438 +	*/
   1.439 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.440 +	};	// CDiscoverer_ScanDirectoryIncrementL_Transition
   1.441 +
   1.442 +// ______________________________________________________________________________
   1.443 +//
   1.444 +/**
   1.445 +	@internalComponent
   1.446 +	Comments : Transition test of the CDiscoverer::ScanDirectoryCancel method.
   1.447 +
   1.448 + */
   1.449 +class CDiscoverer_ScanDirectoryCancel_Transition : public CTransition
   1.450 +	{
   1.451 +public:
   1.452 +	/**
   1.453 +		@fn				CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
   1.454 +																	TTransitionValidator& aValidator)
   1.455 +		Intended Usage	: Standard c'tor method.
   1.456 +		Error Condition	: None.
   1.457 +		@since			7.0
   1.458 +		@param			aUTContext The context this transition is operating in.
   1.459 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.460 +		@pre 			None.
   1.461 +		@post			CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
   1.462 +	*/
   1.463 +	CDiscoverer_ScanDirectoryCancel_Transition(CUnitTestContext& aUTContext,
   1.464 +													TTransitionValidator& aValidator);
   1.465 +	/**
   1.466 +		@fn				TransitMethodL()
   1.467 +		Intended Usage	: To execute the CDiscoverer::ScanDirectoryCancel method for the test harness.
   1.468 +		Error Condition	: Leaves with an error code.
   1.469 +		@leave			KErrNoMemory, (@see CDiscoverer::ScanDirectoryCancel)
   1.470 +		@since			7.0
   1.471 +		@return			None
   1.472 +		@pre 			CDiscoverer_ScanDirectoryCancel_Transition is fully constructed.
   1.473 +		@post			No change in the CDiscoverer_ScanDirectoryCancel_Transition apart
   1.474 +						from iDiscoverer, which may have changed state.
   1.475 +						(@see CDiscoverer::ScanDirectoryCancel post-condition) for iDiscoverer's new state.
   1.476 +	*/
   1.477 +	inline void TransitMethodL();
   1.478 +
   1.479 +	/**
   1.480 +		@fn				Context() const
   1.481 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.482 +		Error Condition	: None.
   1.483 +		@since			7.0
   1.484 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.485 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.486 +		@post			No change in the CDiscoverer_ScanDirectoryCancel_Transition
   1.487 +	*/
   1.488 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.489 +	};	// CDiscoverer_ScanDirectoryCancel_Transition
   1.490 +
   1.491 +// ______________________________________________________________________________
   1.492 +//
   1.493 +/**
   1.494 +	@internalComponent
   1.495 +	Comments : Transition test of the CDiscoverer::CompleteNotificationProcessing method.
   1.496 +
   1.497 + */
   1.498 +class CDiscoverer_CompleteNotificationProcessing_Transition : public CTransition
   1.499 +	{
   1.500 +public:
   1.501 +	/**
   1.502 +		@fn				CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
   1.503 +																	TTransitionValidator& aValidator)
   1.504 +		Intended Usage	: Standard c'tor method.
   1.505 +		Error Condition	: None.
   1.506 +		@since			7.0
   1.507 +		@param			aUTContext The context this transition is operating in.
   1.508 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.509 +		@pre 			None.
   1.510 +		@post			CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
   1.511 +	*/
   1.512 +	CDiscoverer_CompleteNotificationProcessing_Transition(CUnitTestContext& aUTContext,
   1.513 +													TTransitionValidator& aValidator);
   1.514 +	/**
   1.515 +		@fn				TransitMethodL()
   1.516 +		Intended Usage	: To execute the CDiscoverer::CompleteNotificationProcessing method for the test harness.
   1.517 +		Error Condition	: Leaves with an error code.
   1.518 +		@leave			KErrNoMemory, (@see CDiscoverer::CompleteNotificationProcessing)
   1.519 +		@since			7.0
   1.520 +		@return			None
   1.521 +		@pre 			CDiscoverer_CompleteNotificationProcessing_Transition is fully constructed.
   1.522 +		@post			No change in the CDiscoverer_CompleteNotificationProcessing_Transition apart
   1.523 +						from iDiscoverer, which may have changed state.
   1.524 +						(@see CDiscoverer::CompleteNotificationProcessing post-condition) for iDiscoverer's new state.
   1.525 +	*/
   1.526 +	inline void TransitMethodL();
   1.527 +
   1.528 +	/**
   1.529 +		@fn				Context() const
   1.530 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.531 +		Error Condition	: None.
   1.532 +		@since			7.0
   1.533 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.534 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.535 +		@post			No change in the CDiscoverer_CompleteNotificationProcessing_Transition
   1.536 +	*/
   1.537 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.538 +	};	// CDiscoverer_CompleteNotificationProcessing_Transition
   1.539 +
   1.540 +// ______________________________________________________________________________
   1.541 +//
   1.542 +/**
   1.543 +	@internalComponent
   1.544 +	Comments : Transition test of the CDiscoverer::IsValidEntryL method.
   1.545 + */
   1.546 +class CDiscoverer_IsValidEntryL_Transition : public CTransitionType
   1.547 +	{
   1.548 +public:
   1.549 +	/**
   1.550 +		@fn				CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
   1.551 +																	TTransitionValidator& aValidator)
   1.552 +		Intended Usage	: Standard c'tor method.
   1.553 +		Error Condition	: None.
   1.554 +		@since			7.0
   1.555 +		@param			aUTContext The context this transition is operating in.
   1.556 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.557 +		@pre 			None.
   1.558 +		@post			CDiscoverer_IsValidEntryL_Transition is fully constructed.
   1.559 +	*/
   1.560 +	CDiscoverer_IsValidEntryL_Transition(CUnitTestContext& aUTContext,
   1.561 +													TTransitionValidator& aValidator);
   1.562 +	/**
   1.563 +		@fn				TransitMethodL()
   1.564 +		Intended Usage	: To execute the CDiscoverer::IsValidEntryL method for the test harness.
   1.565 +		Error Condition	: Leaves with an error code.
   1.566 +		@leave			KErrNoMemory, (@see CDiscoverer::IsValidEntryL)
   1.567 +		@since			7.0
   1.568 +		@return			None
   1.569 +		@pre 			CDiscoverer_IsValidEntryL_Transition is fully constructed.
   1.570 +		@post			No change in the CDiscoverer_IsValidEntryL_Transition apart
   1.571 +						from iDiscoverer, which may have changed state.
   1.572 +						(@see CDiscoverer::IsValidEntryL post-condition) for iDiscoverer's new state.
   1.573 +	*/
   1.574 +	inline void TransitMethodL();
   1.575 +
   1.576 +	/**
   1.577 +		@fn				Context() const
   1.578 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.579 +		Error Condition	: None.
   1.580 +		@since			7.0
   1.581 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.582 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.583 +		@post			No change in the CDiscoverer_IsValidEntryL_Transition
   1.584 +	*/
   1.585 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.586 +	};	// CDiscoverer_IsValidEntryL_Transition
   1.587 +
   1.588 +// ______________________________________________________________________________
   1.589 +//
   1.590 +/**
   1.591 +	@internalComponent
   1.592 +	Comments : Transition test of the CDiscoverer::ProcessEntryL method.
   1.593 + */
   1.594 +class CDiscoverer_ProcessEntryL_Transition : public CTransitionType
   1.595 +	{
   1.596 +public:
   1.597 +	/**
   1.598 +		@fn				CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
   1.599 +																	TTransitionValidator& aValidator)
   1.600 +		Intended Usage	: Standard c'tor method.
   1.601 +		Error Condition	: None.
   1.602 +		@since			7.0
   1.603 +		@param			aUTContext The context this transition is operating in.
   1.604 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.605 +		@pre 			None.
   1.606 +		@post			CDiscoverer_ProcessEntryL_Transition is fully constructed.
   1.607 +	*/
   1.608 +	CDiscoverer_ProcessEntryL_Transition(CUnitTestContext& aUTContext,
   1.609 +													TTransitionValidator& aValidator);
   1.610 +	/**
   1.611 +		@fn				TransitMethodL()
   1.612 +		Intended Usage	: To execute the CDiscoverer::ProcessEntryL method for the test harness.
   1.613 +		Error Condition	: Leaves with an error code.
   1.614 +		@leave			KErrNoMemory, (@see CDiscoverer::ProcessEntryL)
   1.615 +		@since			7.0
   1.616 +		@return			None
   1.617 +		@pre 			CDiscoverer_ProcessEntryL_Transition is fully constructed.
   1.618 +		@post			No change in the CDiscoverer_ProcessEntryL_Transition apart
   1.619 +						from iDiscoverer, which may have changed state.
   1.620 +						(@see CDiscoverer::ProcessEntryL post-condition) for iDiscoverer's new state.
   1.621 +	*/
   1.622 +	inline void TransitMethodL();
   1.623 +
   1.624 +	/**
   1.625 +		@fn				Context() const
   1.626 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.627 +		Error Condition	: None.
   1.628 +		@since			7.0
   1.629 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.630 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.631 +		@post			No change in the CDiscoverer_ProcessEntryL_Transition
   1.632 +	*/
   1.633 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.634 +	};	// CDiscoverer_ProcessEntryL_Transition
   1.635 +
   1.636 +// ______________________________________________________________________________
   1.637 +//
   1.638 +/**
   1.639 +	@internalComponent
   1.640 +	Comments : Transition test of the CDiscoverer::MountDriveL method.
   1.641 + */
   1.642 +class CDiscoverer_MountDriveL_Transition : public CTransitionType
   1.643 +	{
   1.644 +public:
   1.645 +	/**
   1.646 +		@fn				CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
   1.647 +																	TTransitionValidator& aValidator)
   1.648 +		Intended Usage	: Standard c'tor method.
   1.649 +		Error Condition	: None.
   1.650 +		@since			7.0
   1.651 +		@param			aUTContext The context this transition is operating in.
   1.652 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.653 +		@pre 			None.
   1.654 +		@post			CDiscoverer_MountDriveL_Transition is fully constructed.
   1.655 +	*/
   1.656 +	CDiscoverer_MountDriveL_Transition(CUnitTestContext& aUTContext,
   1.657 +													TTransitionValidator& aValidator);
   1.658 +	/**
   1.659 +		@fn				TransitMethodL()
   1.660 +		Intended Usage	: To execute the CDiscoverer::MountDriveL method for the test harness.
   1.661 +		Error Condition	: Leaves with an error code.
   1.662 +		@leave			KErrNoMemory, (@see CDiscoverer::MountDriveL)
   1.663 +		@since			7.0
   1.664 +		@return			None
   1.665 +		@pre 			CDiscoverer_MountDriveL_Transition is fully constructed.
   1.666 +		@post			No change in the CDiscoverer_MountDriveL_Transition apart
   1.667 +						from iDiscoverer, which may have changed state.
   1.668 +						(@see CDiscoverer::MountDriveL post-condition) for iDiscoverer's new state.
   1.669 +	*/
   1.670 +	inline void TransitMethodL();
   1.671 +
   1.672 +	/**
   1.673 +		@fn				Context() const
   1.674 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.675 +		Error Condition	: None.
   1.676 +		@since			7.0
   1.677 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.678 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.679 +		@post			No change in the CDiscoverer_MountDriveL_Transition
   1.680 +	*/
   1.681 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.682 +	};	// CDiscoverer_MountDriveL_Transition
   1.683 +
   1.684 +// ______________________________________________________________________________
   1.685 +//
   1.686 +/**
   1.687 +	@internalComponent
   1.688 +	Comments : Transition test of the CDiscoverer::UnmountDrive method.
   1.689 + */
   1.690 +class CDiscoverer_UnmountDrive_Transition : public CTransition
   1.691 +	{
   1.692 +public:
   1.693 +	/**
   1.694 +		@fn				CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
   1.695 +																	TTransitionValidator& aValidator)
   1.696 +		Intended Usage	: Standard c'tor method.
   1.697 +		Error Condition	: None.
   1.698 +		@since			7.0
   1.699 +		@param			aUTContext The context this transition is operating in.
   1.700 +		@param			aValidator Used for checking the pre & post conditions of the test object.
   1.701 +		@pre 			None.
   1.702 +		@post			CDiscoverer_UnmountDrive_Transition is fully constructed.
   1.703 +	*/
   1.704 +	CDiscoverer_UnmountDrive_Transition(CUnitTestContext& aUTContext,
   1.705 +													TTransitionValidator& aValidator);
   1.706 +	/**
   1.707 +		@fn				TransitMethodL()
   1.708 +		Intended Usage	: To execute the CDiscoverer::UnmountDrive method for the test harness.
   1.709 +		Error Condition	: Leaves with an error code.
   1.710 +		@leave			KErrNoMemory, (@see CDiscoverer::UnmountDrive)
   1.711 +		@since			7.0
   1.712 +		@return			None
   1.713 +		@pre 			CDiscoverer_UnmountDrive_Transition is fully constructed.
   1.714 +		@post			No change in the CDiscoverer_UnmountDrive_Transition apart
   1.715 +						from iDiscoverer, which may have changed state.
   1.716 +						(@see CDiscoverer::UnmountDrive post-condition) for iDiscoverer's new state.
   1.717 +	*/
   1.718 +	inline void TransitMethodL();
   1.719 +
   1.720 +	/**
   1.721 +		@fn				Context() const
   1.722 +		Intended Usage	: To provide access to the unit test context cast to the correct type.
   1.723 +		Error Condition	: None.
   1.724 +		@since			7.0
   1.725 +		@return			The unit test context cast to a CDiscoverer_UnitTestContext
   1.726 +		@pre 			iUTContext is a valid CDiscoverer_UnitTestContext.
   1.727 +		@post			No change in the CDiscoverer_UnmountDrive_Transition
   1.728 +	*/
   1.729 +	inline CDiscoverer_UnitTestContext& Context() const;
   1.730 +	};	// CDiscoverer_UnmountDrive_Transition
   1.731 +
   1.732 +
   1.733 +#include "DiscovererTransitions.inl"
   1.734 +
   1.735 +#endif		// __DISCOVERERTRANSITIONS_H__