sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Definition of the CDiscoverer Unit Test classes. sl@0: // sl@0: // sl@0: sl@0: #ifndef __DISCOVERERUNITTEST_H__ sl@0: #define __DISCOVERERUNITTEST_H__ sl@0: sl@0: sl@0: #include sl@0: #include "DiscovererStateAccessor.h" sl@0: #include "DiscovererTransitionValidation.h" sl@0: #include "DiscovererTransitions.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for CreateAndDestroy on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_CreateAndDestroy_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_CreateAndDestroy_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_CreateAndDestroy_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_CreateAndDestroy_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post CDiscoverer_CreateAndDestroy_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_CreateAndDestroy_UnitTest(); sl@0: sl@0: /** sl@0: @fn PrepareUnitTestL() sl@0: Intended Usage : Called by test framework just before test is run to allow sl@0: any test preparation to take place. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post This unit test is ready to run. sl@0: */ sl@0: void PrepareUnitTestL(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_CreateAndDestroy_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post CDiscoverer_CreateAndDestroy_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: }; // CDiscoverer_CreateAndDestroy_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for MountDrive on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_MountDrive_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_MountDrive_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_MountDrive_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_MountDrive_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_MountDrive_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_MountDrive_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_MountDrive_UnitTest is fully constructed. sl@0: @post CDiscoverer_MountDrive_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_MountDrive_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_MountDrive_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_MountDrive_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_MountDrive_UnitTest is fully constructed. sl@0: @post CDiscoverer_MountDrive_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_MountDriveL_TransitionValidator* iMountValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_MountDrive_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for UnmountDrive on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_UnmountDrive_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_UnmountDrive_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_UnmountDrive_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_UnmountDrive_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_UnmountDrive_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed. sl@0: @post CDiscoverer_UnmountDrive_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_UnmountDrive_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_UnmountDrive_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_UnmountDrive_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_UnmountDrive_UnitTest is fully constructed. sl@0: @post CDiscoverer_UnmountDrive_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_UnmountDrive_TransitionValidator* iUnmountValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_UnmountDrive_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for IsValidEntryL on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_IsValidEntryL_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_IsValidEntryL_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_IsValidEntryL_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_IsValidEntryL_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_IsValidEntryL_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed. sl@0: @post CDiscoverer_IsValidEntryL_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_IsValidEntryL_UnitTest(); sl@0: sl@0: /** sl@0: @fn PrepareUnitTestL() sl@0: Intended Usage : Called by test framework just before test is run to allow sl@0: any test preparation to take place. sl@0: Error Condition : sl@0: @since 7.0 sl@0: @pre CDiscoverer_CreateAndDestroy_UnitTest is fully constructed. sl@0: @post This unit test is ready to run. sl@0: */ sl@0: void PrepareUnitTestL(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_IsValidEntryL_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_IsValidEntryL_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_IsValidEntryL_UnitTest is fully constructed. sl@0: @post CDiscoverer_IsValidEntryL_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_IsValidEntry_TransitionValidator* iIsValidEntryValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_IsValidEntryL_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for ProcessEntryL on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_ProcessEntryL_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_ProcessEntryL_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_ProcessEntryL_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_ProcessEntryL_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_ProcessEntryL_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed. sl@0: @post CDiscoverer_ProcessEntryL_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_ProcessEntryL_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_ProcessEntryL_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_ProcessEntryL_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_ProcessEntryL_UnitTest is fully constructed. sl@0: @post CDiscoverer_ProcessEntryL_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_ProcessEntryL_TransitionValidator* iProcessEntryValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_ProcessEntryL_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for CompleteNotificationProcessing on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_CompleteNotificationProcessing_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_CompleteNotificationProcessing_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_CompleteNotificationProcessing_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_CompleteNotificationProcessing_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_CompleteNotificationProcessing_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed. sl@0: @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_CompleteNotificationProcessing_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_CompleteNotificationProcessing_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_CompleteNotificationProcessing_UnitTest is fully constructed. sl@0: @post CDiscoverer_CompleteNotificationProcessing_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_CompleteNotificationProcessing_TransitionValidator* iCompleteNotificationProcessingValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_CompleteNotificationProcessing_UnitTest sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for Notification on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_Notification_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_Notification_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_Notification_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_Notification_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_Notification_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_Notification_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_Notification_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_Notification_UnitTest is fully constructed. sl@0: @post CDiscoverer_Notification_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_Notification_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_Notification_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_Notification_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_Notification_UnitTest is fully constructed. sl@0: @post CDiscoverer_Notification_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_Notification_TransitionValidator* iNotificationValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_Notification_UnitTest sl@0: sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for SuspendResume on CDiscoverer, the class under test. sl@0: sl@0: */ sl@0: class CDiscoverer_SuspendResume_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_SuspendResume_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_SuspendResume_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_SuspendResume_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_SuspendResume_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_SuspendResume_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_SuspendResume_UnitTest is fully constructed. sl@0: @post CDiscoverer_SuspendResume_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_SuspendResume_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_SuspendResume_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_SuspendResume_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_SuspendResume_UnitTest is fully constructed. sl@0: @post CDiscoverer_SuspendResume_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_Notification_TransitionValidator* iNotificationValidator; sl@0: TDiscoverer_Suspend_TransitionValidator* iSuspendValidator; sl@0: TDiscoverer_Resume_TransitionValidator* iResumeValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_SuspendResume_UnitTest sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for ScanDirectory on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_ScanDirectory_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_ScanDirectory_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_ScanDirectory_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_ScanDirectory_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_ScanDirectory_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectory_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_ScanDirectory_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectory_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_ScanDirectory_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_ScanDirectory_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectory_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_ScanDirectory_TransitionValidator* iScanDirectoryValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_ScanDirectory_UnitTest sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for ScanDirectoryCancel on CDiscoverer, the class under test. sl@0: sl@0: */ sl@0: class CDiscoverer_ScanDirectoryCancel_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_ScanDirectoryCancel_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_ScanDirectoryCancel_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_ScanDirectoryCancel_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_ScanDirectoryCancel_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_ScanDirectoryCancel_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_ScanDirectoryCancel_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_ScanDirectoryCancel_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectoryCancel_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_ScanDirectoryCancel_TransitionValidator* iScanDirectoryCancelValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_ScanDirectoryCancel_UnitTest sl@0: sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: /** sl@0: @internalComponent sl@0: sl@0: Comments : Unit Test for ScanDirectoryIncrement on CDiscoverer, the class under test. sl@0: */ sl@0: class CDiscoverer_ScanDirectoryIncrement_UnitTest : public CUnitTest sl@0: { sl@0: public: sl@0: /** sl@0: @fn NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Standard two-phase construction which leaves nothing on the sl@0: cleanup stack. sl@0: Error Condition : Leaves with the error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @return CDiscoverer_ScanDirectoryIncrement_UnitTest* The constructed object. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised. sl@0: */ sl@0: static CDiscoverer_ScanDirectoryIncrement_UnitTest* NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn RunError(TInt aError) sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CDiscoverer_ScanDirectoryIncrement_UnitTest sl@0: object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : @see CUnitTest::RunError(). sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise sl@0: @see CUnitTest::RunError() sl@0: @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed, and initialised. sl@0: @post The object has been restored to a sensible state. sl@0: */ sl@0: inline TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: @fn ~CDiscoverer_ScanDirectoryIncrement_UnitTest() sl@0: Intended Usage : Standard Destructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully destroyed. sl@0: */ sl@0: ~CDiscoverer_ScanDirectoryIncrement_UnitTest(); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: Intended Usage : Default constructor. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @param aDataLogger The output logging object. sl@0: @param aObserver The observer of this UnitTest. sl@0: @param aStateAccessor WhiteBox state access to the CDiscoverer class. sl@0: @pre None. sl@0: @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed. sl@0: */ sl@0: inline CDiscoverer_ScanDirectoryIncrement_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver); sl@0: sl@0: /** sl@0: @fn void ConstructL() sl@0: Intended Usage : Second phase of safe two phase construction, sl@0: to complete the object initialisation. sl@0: Error Condition : Leaves with an error code. sl@0: @leave KErrNoMemory, and @see CUnitTest::BaseNewL(). sl@0: @since 7.0 sl@0: @return None sl@0: @pre CDiscoverer_ScanDirectoryIncrement_UnitTest is fully constructed. sl@0: @post CDiscoverer_ScanDirectoryIncrement_UnitTest is fully initialised. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: The context of the Unit Test. sl@0: i.e The CDiscoverer class tested by this UnitTest's transitions. sl@0: */ sl@0: CDiscoverer_UnitTestContext* iUTContext; sl@0: TDiscoverer_StateAccessor* iStateAccessor; sl@0: TDiscoverer_Ctor_TransitionValidator* iCtorValidator; sl@0: TDiscoverer_ScanDirectoryIncrement_TransitionValidator* iScanDirectoryIncrementValidator; sl@0: TDiscoverer_Dtor_TransitionValidator* iDtorValidator; sl@0: }; // CDiscoverer_ScanDirectoryIncrement_UnitTest sl@0: sl@0: #include "DiscovererUnitTest.inl" sl@0: sl@0: #endif // __DISCOVERERUNITTEST_H__ sl@0: