os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierUnitTest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-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 unit test class implementations for the CBackupNotifier class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "BackupNotifierUnitTest.h"
sl@0
    19
sl@0
    20
// ______________________________________________________________________________
sl@0
    21
//
sl@0
    22
_LIT(KBackupNotifierCreateAndDestroyUnitTest,"CBackupNotifier_CreateAndDestroy_UnitTest");
sl@0
    23
sl@0
    24
CBackupNotifier_CreateAndDestroy_UnitTest* CBackupNotifier_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    25
											MUnitTestObserver& aObserver)
sl@0
    26
	{
sl@0
    27
	CBackupNotifier_CreateAndDestroy_UnitTest* self = 
sl@0
    28
					new(ELeave) CBackupNotifier_CreateAndDestroy_UnitTest(aDataLogger,
sl@0
    29
																aObserver);
sl@0
    30
	CleanupStack::PushL(self);
sl@0
    31
	self->ConstructL();
sl@0
    32
	CleanupStack::Pop(self);
sl@0
    33
	return self; 
sl@0
    34
	}
sl@0
    35
sl@0
    36
inline TInt CBackupNotifier_CreateAndDestroy_UnitTest::RunError(TInt aError)
sl@0
    37
	{
sl@0
    38
	// The RunL left so chain to the base first and then cleanup
sl@0
    39
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
    40
	delete iUTContext;
sl@0
    41
	iUTContext = NULL;
sl@0
    42
	delete iStateAccessor;
sl@0
    43
	iStateAccessor = NULL;
sl@0
    44
	/* delete any validators used */
sl@0
    45
	delete iCtorValidator;
sl@0
    46
	iCtorValidator = NULL;
sl@0
    47
	delete iDtorValidator;
sl@0
    48
	iDtorValidator = NULL;
sl@0
    49
	return error;
sl@0
    50
	}
sl@0
    51
sl@0
    52
inline CBackupNotifier_CreateAndDestroy_UnitTest::~CBackupNotifier_CreateAndDestroy_UnitTest()
sl@0
    53
	{
sl@0
    54
	// Simply delete our test class instance
sl@0
    55
	delete iUTContext;
sl@0
    56
	delete iStateAccessor;
sl@0
    57
	/* delete any validators used */
sl@0
    58
	delete iCtorValidator;
sl@0
    59
	delete iDtorValidator;
sl@0
    60
	}
sl@0
    61
sl@0
    62
inline CBackupNotifier_CreateAndDestroy_UnitTest::CBackupNotifier_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    63
																	MUnitTestObserver& aObserver)
sl@0
    64
: CUnitTest(KBackupNotifierCreateAndDestroyUnitTest, aDataLogger, aObserver)
sl@0
    65
	{
sl@0
    66
	//Do nothing
sl@0
    67
	}
sl@0
    68
sl@0
    69
// Now the Individual transitions need to be added.
sl@0
    70
inline void CBackupNotifier_CreateAndDestroy_UnitTest::ConstructL()
sl@0
    71
	{
sl@0
    72
	// Perform the base class initialization
sl@0
    73
	UnitTestConstructL();
sl@0
    74
sl@0
    75
	// Create the Unit test state accessor
sl@0
    76
	iStateAccessor = new(ELeave) TBackupNotifier_StateAccessor;
sl@0
    77
	// Construct the Unit test context.
sl@0
    78
	iUTContext = new(ELeave) CBackupNotifier_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
    79
	iUTContext->iStub = new(ELeave) CNotificationStub(iDataLogger);
sl@0
    80
	// Add the Transitions in the order they are to run
sl@0
    81
	// C'tor first, D'tor last...
sl@0
    82
	iCtorValidator = new(ELeave) TBackupNotifier_Ctor_TransitionValidator(*iUTContext);
sl@0
    83
	AddTransitionL(new(ELeave)CBackupNotifier_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    84
	iDtorValidator = new(ELeave) TBackupNotifier_Dtor_TransitionValidator(*iUTContext);
sl@0
    85
	AddTransitionL(new(ELeave)CBackupNotifier_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
    86
	}
sl@0
    87