os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTest.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTest.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,119 @@
1.4 +// Copyright (c) 2001-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 unit test class definitions for the CBackupNotifier class.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __BACKUPNOTIFIERUNITTEST_H__
1.22 +#define __BACKUPNOTIFIERUNITTEST_H__
1.23 +
1.24 +#include <test_bed/testbeddefinitions.h>
1.25 +#include "BackupNotifierStateAccessor.h"
1.26 +#include "BackupNotifierTransitionValidation.h"
1.27 +#include "BackupNotifierTransitions.h"
1.28 +
1.29 +// ______________________________________________________________________________
1.30 +//
1.31 +/**
1.32 + @internalComponent
1.33 +
1.34 + Comments : Unit Test for CreateAndDestroy on CBackupNotifier, the class under test.
1.35 + */
1.36 +class CBackupNotifier_CreateAndDestroy_UnitTest : public CUnitTest
1.37 + {
1.38 +public:
1.39 + /**
1.40 + @fn NewL(CDataLogger& aDataLogger,
1.41 + MUnitTestObserver& aObserver)
1.42 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.43 + cleanup stack.
1.44 + Error Condition : Leaves with the error code.
1.45 + @leave KErrNoMemory
1.46 + @since 7.0
1.47 + @param aDataLogger The output logging object.
1.48 + @param aObserver The observer of this UnitTest.
1.49 + @return CBackupNotifier_CreateAndDestroy_UnitTest* The constructed object.
1.50 + @pre None.
1.51 + @post CBackupNotifier_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.52 + */
1.53 + static CBackupNotifier_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
1.54 + MUnitTestObserver& aObserver);
1.55 +
1.56 + /**
1.57 + @fn RunError(TInt aError)
1.58 + Intended Usage : Intercept the panic caused by a RunL leave,
1.59 + to restore the CBackupNotifier_CreateAndDestroy_UnitTest
1.60 + object to a sensible state.
1.61 + (called by the Active Scheduler immediately before the Panic).
1.62 + Error Condition : @see CUnitTest::RunError().
1.63 + @since 7.0
1.64 + @return TInt KErrNone if cleanup successful, otherwise
1.65 + @see CUnitTest::RunError()
1.66 + @pre CBackupNotifier_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.67 + @post The object has been restored to a sensible state.
1.68 + */
1.69 + inline TInt RunError(TInt aError);
1.70 +
1.71 + /**
1.72 + @fn ~CBackupNotifier_CreateAndDestroy_UnitTest()
1.73 + Intended Usage : Standard Destructor.
1.74 + Error Condition : None.
1.75 + @since 7.0
1.76 + @pre CBackupNotifier_CreateAndDestroy_UnitTest is fully constructed.
1.77 + @post CBackupNotifier_CreateAndDestroy_UnitTest is fully destroyed.
1.78 + */
1.79 + ~CBackupNotifier_CreateAndDestroy_UnitTest();
1.80 +
1.81 +private:
1.82 + /**
1.83 + @fn CBackupNotifier_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.84 + MUnitTestObserver& aObserver)
1.85 + Intended Usage : Default constructor.
1.86 + Error Condition : None.
1.87 + @since 7.0
1.88 + @param aDataLogger The output logging object.
1.89 + @param aObserver The observer of this UnitTest.
1.90 + @param aStateAccessor WhiteBox state access to the CBackupNotifier class.
1.91 + @pre None.
1.92 + @post CBackupNotifier_CreateAndDestroy_UnitTest is fully constructed.
1.93 + */
1.94 + inline CBackupNotifier_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.95 + MUnitTestObserver& aObserver);
1.96 +
1.97 + /**
1.98 + @fn void ConstructL()
1.99 + Intended Usage : Second phase of safe two phase construction,
1.100 + to complete the object initialisation.
1.101 + Error Condition : Leaves with an error code.
1.102 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.103 + @since 7.0
1.104 + @return None
1.105 + @pre CBackupNotifier_CreateAndDestroy_UnitTest is fully constructed.
1.106 + @post CBackupNotifier_CreateAndDestroy_UnitTest is fully initialised.
1.107 + */
1.108 + void ConstructL();
1.109 +
1.110 + /**
1.111 + The context of the Unit Test.
1.112 + i.e The CBackupNotifier class tested by this UnitTest's transitions.
1.113 + */
1.114 + CBackupNotifier_UnitTestContext* iUTContext;
1.115 + TBackupNotifier_StateAccessor* iStateAccessor;
1.116 + /* C'tor, d'tor, and method transition validators */
1.117 + TBackupNotifier_Ctor_TransitionValidator* iCtorValidator;
1.118 + // TBackupNotifier_CreateAndDestroy_TransitionValidator* iCreateAndDestroyValidator;
1.119 + TBackupNotifier_Dtor_TransitionValidator* iDtorValidator;
1.120 + }; // CBackupNotifier_CreateAndDestroy_UnitTest
1.121 +
1.122 +#endif // __BACKUPNOTIFIERUNITTEST_H__