os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,136 @@
     1.4 +// Copyright (c) 1997-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 CLoadManager 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 "LoadManagerUnitTest.h"
    1.25 +#include "ComponentTester.h"
    1.26 +
    1.27 +RTest test(_L("LoadManagerTest.cpp"));
    1.28 +
    1.29 +// ______________________________________________________________________________
    1.30 +//
    1.31 +/**
    1.32 +	@internalComponent
    1.33 +	Comments : Test the CLoadManager class.
    1.34 + */
    1.35 +class CLoadManager_ComponentTest : public CComponentTester
    1.36 +	{
    1.37 +public:
    1.38 +	/**
    1.39 +		@fn				NewLC(CDataLogger& aDataLogger,
    1.40 +							 MComponentTestObserver& aObserver)
    1.41 +		Intended Usage	: Standard two-phase construction which leaves nothing on the
    1.42 +						cleanup stack.
    1.43 +		Error Condition	: Leaves with the error code.
    1.44 +		@leave  		KErrNoMemory
    1.45 +		@since			7.0
    1.46 +		@param			aDataLogger The output logging object.
    1.47 +		@param			aObserver The observer of this component test.
    1.48 +		@return			CLoadManager_ComponentTest* The constructed object.
    1.49 +		@pre 			None.
    1.50 +		@post			CLoadManager_ComponentTest is fully constructed.
    1.51 +	*/
    1.52 +	static CLoadManager_ComponentTest* NewLC(CDataLogger& aDataLogger,
    1.53 +							MComponentTestObserver& aObserver);
    1.54 +
    1.55 +private:
    1.56 +	/**
    1.57 +		@fn				CLoadManager_ComponentTest(CDataLogger& aDataLogger,
    1.58 +											MComponentTestObserver& aObserver)
    1.59 +		Intended Usage	: Standard c'tor method.
    1.60 +		Error Condition	: None.
    1.61 +		@since			7.0
    1.62 +		@param			aDataLogger The logging object.
    1.63 +		@param			aObserver The observer of this component test.
    1.64 +		@pre 			None.
    1.65 +		@post			CLoadManager_ComponentTest is fully constructed.
    1.66 +	*/
    1.67 +	inline CLoadManager_ComponentTest(CDataLogger& aDataLogger,
    1.68 +												MComponentTestObserver& aObserver);
    1.69 +	/**
    1.70 +		@fn				void ConstructL()
    1.71 +		Intended Usage	: Second phase of safe two phase construction,
    1.72 +						to complete the object initialisation.
    1.73 +		Error Condition	: Leaves with an error code.
    1.74 +		@leave  		KErrNoMemory.
    1.75 +		@since			7.0
    1.76 +		@return			None
    1.77 +		@pre 			CLoadManager_ComponentTest is fully constructed.
    1.78 +		@post			CLoadManager_ComponentTest is fully initialised.
    1.79 +	*/
    1.80 +	inline void ConstructL();
    1.81 +
    1.82 +	};	// CLoadManager_ComponentTest
    1.83 +
    1.84 +
    1.85 +// ______________________________________________________________________________
    1.86 +//
    1.87 +inline CLoadManager_ComponentTest* CLoadManager_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
    1.88 +	{
    1.89 +	CLoadManager_ComponentTest* self = new (ELeave) CLoadManager_ComponentTest(aDataLogger, aObserver);
    1.90 +	CleanupStack::PushL(self);
    1.91 +	self->ConstructL();
    1.92 +	return self;
    1.93 +	}
    1.94 +
    1.95 +inline CLoadManager_ComponentTest::CLoadManager_ComponentTest(CDataLogger& aDataLogger,
    1.96 +									MComponentTestObserver& aObserver)
    1.97 +: CComponentTester(aDataLogger, aObserver)
    1.98 +	{
    1.99 +	// Do nothing here.
   1.100 +	}
   1.101 +
   1.102 +inline void CLoadManager_ComponentTest::ConstructL()
   1.103 +	{
   1.104 +	// Perform base class initialization
   1.105 +	ComponentTesterConstructL();
   1.106 +
   1.107 +	AddUnitTestL(CLoadManager_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
   1.108 +	//AddUnitTestL(CLoadManager_FindInstantiationAndDestroy_UnitTest::NewL(iDataLogger, *this));
   1.109 +	AddUnitTestL(CLoadManager_FindInstantiationFailure_UnitTest::NewL(iDataLogger, *this));
   1.110 +	//AddUnitTestL(CLoadManager_DefectFOT56ULPM_UnitTest::NewL(iDataLogger, *this));
   1.111 +	}
   1.112 +
   1.113 +// ______________________________________________________________________________
   1.114 +//
   1.115 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
   1.116 +									MComponentTestObserver&	aComponentTestObserver)
   1.117 +	{
   1.118 +	return CLoadManager_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
   1.119 +	}
   1.120 +
   1.121 +// ___________________________________________________________________________
   1.122 +//
   1.123 +// This section of the module simply includes the exported test harness template which
   1.124 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
   1.125 +// project file can then produce a EXE for the test project instead of a DLL.
   1.126 +
   1.127 +#include <ecom/test_bed/testharnesstemplate.h>
   1.128 +
   1.129 +GLDEF_C TInt E32Main()
   1.130 +	{
   1.131 +	test.Title();
   1.132 +	test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-LOADMANAGERTEST-0001 "));
   1.133 +
   1.134 +	test.End();
   1.135 +	test.Close();
   1.136 +
   1.137 +	return E32Main_TestHarness(NewComponentTestLC);
   1.138 +	}
   1.139 +