os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTest.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/BackupNotifierTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,125 @@
     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 +// Demonstrates a simple set of derived class implementations to
    1.18 +// test the CBackupNotifier class using the test bed.
    1.19 +// It may be used as a basis to develop a full test bed dll.
    1.20 +// For support and comment please contact the authors.
    1.21 +// 
    1.22 +//
    1.23 +
    1.24 +#include "BackupNotifierUnitTest.h"
    1.25 +#include "ComponentTester.h"
    1.26 +
    1.27 +// ______________________________________________________________________________
    1.28 +//
    1.29 +/**
    1.30 +	@internalComponent
    1.31 +
    1.32 +	Comments : Test the CBackupNotifier class.
    1.33 + */
    1.34 +class CBackupNotifier_ComponentTest : public CComponentTester
    1.35 +	{
    1.36 +public:
    1.37 +	/**
    1.38 +		@fn				NewLC(CDataLogger& aDataLogger,
    1.39 +							 MComponentTestObserver& aObserver)
    1.40 +		Intended Usage	: Standard two-phase construction which leaves nothing on the
    1.41 +						cleanup stack.
    1.42 +		Error Condition	: Leaves with the error code.
    1.43 +		@leave			KErrNoMemory
    1.44 +		@since			7.0
    1.45 +		@param			aDataLogger The output logging object.
    1.46 +		@param			aObserver The observer of this component test.
    1.47 +		@return			CBackupNotifier_ComponentTest* The constructed object.
    1.48 +		@pre 			None.
    1.49 +		@post			CBackupNotifier_ComponentTest is fully constructed.
    1.50 +	*/
    1.51 +	static CBackupNotifier_ComponentTest* NewLC(CDataLogger& aDataLogger, 
    1.52 +							MComponentTestObserver& aObserver);
    1.53 +
    1.54 +private:
    1.55 +	/**
    1.56 +		@fn				CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
    1.57 +											MComponentTestObserver& aObserver)
    1.58 +		Intended Usage	: Standard c'tor method.
    1.59 +		Error Condition	: None.
    1.60 +		@since			7.0
    1.61 +		@param			aDataLogger The logging object.
    1.62 +		@param			aObserver The observer of this component test.
    1.63 +		@pre 			None.
    1.64 +		@post			CBackupNotifier_ComponentTest is fully constructed.
    1.65 +	*/
    1.66 +	inline CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
    1.67 +												MComponentTestObserver& aObserver);
    1.68 +	/**
    1.69 +		@fn				void ConstructL()
    1.70 +		Intended Usage	: Second phase of safe two phase construction, 
    1.71 +						to complete the object initialisation.
    1.72 +		Error Condition	: Leaves with an error code.
    1.73 +		@leave			KErrNoMemory.
    1.74 +		@since			7.0
    1.75 +		@return			None 
    1.76 +		@pre 			CBackupNotifier_ComponentTest is fully constructed.
    1.77 +		@post			CBackupNotifier_ComponentTest is fully initialised.
    1.78 +	*/
    1.79 +	inline void ConstructL();
    1.80 +
    1.81 +	};	// CBackupNotifier_ComponentTest
    1.82 +
    1.83 +// ______________________________________________________________________________
    1.84 +//
    1.85 +inline CBackupNotifier_ComponentTest* CBackupNotifier_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
    1.86 +	{
    1.87 +	CBackupNotifier_ComponentTest* self = new (ELeave) CBackupNotifier_ComponentTest(aDataLogger, aObserver);
    1.88 +	CleanupStack::PushL(self);
    1.89 +	self->ConstructL();
    1.90 +	return self;
    1.91 +	}
    1.92 +
    1.93 +inline CBackupNotifier_ComponentTest::CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
    1.94 +									MComponentTestObserver& aObserver)
    1.95 +: CComponentTester(aDataLogger, aObserver)
    1.96 +	{
    1.97 +	// Do nothing here.
    1.98 +	}
    1.99 +
   1.100 +inline void CBackupNotifier_ComponentTest::ConstructL()
   1.101 +	{
   1.102 +	// Perform base class initialization
   1.103 +	ComponentTesterConstructL();
   1.104 +
   1.105 +	AddUnitTestL(CBackupNotifier_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
   1.106 +	}
   1.107 +
   1.108 +// ______________________________________________________________________________
   1.109 +//
   1.110 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
   1.111 +									MComponentTestObserver&	aComponentTestObserver)
   1.112 +	{
   1.113 +	return CBackupNotifier_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
   1.114 +	}
   1.115 +
   1.116 +// ___________________________________________________________________________
   1.117 +//
   1.118 +// This section of the module simply includes the exported test harness template which 
   1.119 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP 
   1.120 +// project file can then produce a EXE for the test project instead of a DLL.
   1.121 +
   1.122 +#include <ecom/test_bed/testharnesstemplate.h>
   1.123 +
   1.124 +GLDEF_C TInt E32Main()
   1.125 +	{
   1.126 +	return E32Main_TestHarness(NewComponentTestLC);
   1.127 +	}
   1.128 +