os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,87 @@
     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 implementations for the CBackupNotifier class.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "BackupNotifierUnitTest.h"
    1.22 +
    1.23 +// ______________________________________________________________________________
    1.24 +//
    1.25 +_LIT(KBackupNotifierCreateAndDestroyUnitTest,"CBackupNotifier_CreateAndDestroy_UnitTest");
    1.26 +
    1.27 +CBackupNotifier_CreateAndDestroy_UnitTest* CBackupNotifier_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
    1.28 +											MUnitTestObserver& aObserver)
    1.29 +	{
    1.30 +	CBackupNotifier_CreateAndDestroy_UnitTest* self = 
    1.31 +					new(ELeave) CBackupNotifier_CreateAndDestroy_UnitTest(aDataLogger,
    1.32 +																aObserver);
    1.33 +	CleanupStack::PushL(self);
    1.34 +	self->ConstructL();
    1.35 +	CleanupStack::Pop(self);
    1.36 +	return self; 
    1.37 +	}
    1.38 +
    1.39 +inline TInt CBackupNotifier_CreateAndDestroy_UnitTest::RunError(TInt aError)
    1.40 +	{
    1.41 +	// The RunL left so chain to the base first and then cleanup
    1.42 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.43 +	delete iUTContext;
    1.44 +	iUTContext = NULL;
    1.45 +	delete iStateAccessor;
    1.46 +	iStateAccessor = NULL;
    1.47 +	/* delete any validators used */
    1.48 +	delete iCtorValidator;
    1.49 +	iCtorValidator = NULL;
    1.50 +	delete iDtorValidator;
    1.51 +	iDtorValidator = NULL;
    1.52 +	return error;
    1.53 +	}
    1.54 +
    1.55 +inline CBackupNotifier_CreateAndDestroy_UnitTest::~CBackupNotifier_CreateAndDestroy_UnitTest()
    1.56 +	{
    1.57 +	// Simply delete our test class instance
    1.58 +	delete iUTContext;
    1.59 +	delete iStateAccessor;
    1.60 +	/* delete any validators used */
    1.61 +	delete iCtorValidator;
    1.62 +	delete iDtorValidator;
    1.63 +	}
    1.64 +
    1.65 +inline CBackupNotifier_CreateAndDestroy_UnitTest::CBackupNotifier_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.66 +																	MUnitTestObserver& aObserver)
    1.67 +: CUnitTest(KBackupNotifierCreateAndDestroyUnitTest, aDataLogger, aObserver)
    1.68 +	{
    1.69 +	//Do nothing
    1.70 +	}
    1.71 +
    1.72 +// Now the Individual transitions need to be added.
    1.73 +inline void CBackupNotifier_CreateAndDestroy_UnitTest::ConstructL()
    1.74 +	{
    1.75 +	// Perform the base class initialization
    1.76 +	UnitTestConstructL();
    1.77 +
    1.78 +	// Create the Unit test state accessor
    1.79 +	iStateAccessor = new(ELeave) TBackupNotifier_StateAccessor;
    1.80 +	// Construct the Unit test context.
    1.81 +	iUTContext = new(ELeave) CBackupNotifier_UnitTestContext(iDataLogger, *iStateAccessor, *this);
    1.82 +	iUTContext->iStub = new(ELeave) CNotificationStub(iDataLogger);
    1.83 +	// Add the Transitions in the order they are to run
    1.84 +	// C'tor first, D'tor last...
    1.85 +	iCtorValidator = new(ELeave) TBackupNotifier_Ctor_TransitionValidator(*iUTContext);
    1.86 +	AddTransitionL(new(ELeave)CBackupNotifier_NewL_Transition(*iUTContext,*iCtorValidator));
    1.87 +	iDtorValidator = new(ELeave) TBackupNotifier_Dtor_TransitionValidator(*iUTContext);
    1.88 +	AddTransitionL(new(ELeave)CBackupNotifier_Dtor_Transition(*iUTContext,*iDtorValidator));
    1.89 +	}
    1.90 +