lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTest.cpp
author Stefan Karlsson <stefan.karlsson@nokia.com>
Mon, 29 Mar 2010 12:27:51 +0100
branchCompilerCompatibility
changeset 14 69a2780c0013
parent 0 e4d67989cc36
permissions -rw-r--r--
Merge.

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// Demonstrates a simple set of derived class implementations to
// test the CDataLogger class using the test bed.
// It may be used as a basis to develop a full test bed dll.
// For support and comment please contact the authors.
// 
//

#include "DataLoggerUnitTest.h"
#include "ComponentTester.h"

RTest test(_L("DataLoggerTest.cpp"));

// ______________________________________________________________________________
//
/**
	@internalComponent

	Comments : Test the CDataLogger class.
 */
class CDataLogger_ComponentTest : public CComponentTester
	{
public:
	/**
		@fn				NewLC(CDataLogger& aDataLogger,
							 MComponentTestObserver& aObserver)
		Intended Usage	: Standard two-phase construction which leaves nothing on the
						cleanup stack.
		Error Condition	: Leaves with the error code.
		@leave  		KErrNoMemory
		@since			7.0
		@param			aDataLogger The output logging object.
		@param			aObserver The observer of this component test.
		@return			CDataLogger_ComponentTest* The constructed object.
		@pre 			None.
		@post			CDataLogger_ComponentTest is fully constructed.
	*/
	static CDataLogger_ComponentTest* NewLC(CDataLogger& aDataLogger,
							MComponentTestObserver& aObserver);

private:
	/**
		@fn				CDataLogger_ComponentTest(CDataLogger& aDataLogger,
											MComponentTestObserver& aObserver)
		Intended Usage	: Standard c'tor method.
		Error Condition	: None.
		@since			7.0
		@param			aDataLogger The logging object.
		@param			aObserver The observer of this component test.
		@pre 			None.
		@post			CDataLogger_ComponentTest is fully constructed.
	*/
	inline CDataLogger_ComponentTest(CDataLogger& aDataLogger,
												MComponentTestObserver& aObserver);
	/**
		@fn				void ConstructL()
		Intended Usage	: Second phase of safe two phase construction,
						to complete the object initialisation.
		Error Condition	: Leaves with an error code.
		@leave  		KErrNoMemory.
		@since			7.0
		@return			None
		@pre 			CDataLogger_ComponentTest is fully constructed.
		@post			CDataLogger_ComponentTest is fully initialised.
	*/
	inline void ConstructL();

	};	// CDataLogger_ComponentTest

// ______________________________________________________________________________
//
inline CDataLogger_ComponentTest* CDataLogger_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
	{
	CDataLogger_ComponentTest* self = new (ELeave) CDataLogger_ComponentTest(aDataLogger, aObserver);
	CleanupStack::PushL(self);
	self->ConstructL();
	return self;
	}

inline CDataLogger_ComponentTest::CDataLogger_ComponentTest(CDataLogger& aDataLogger,
									MComponentTestObserver& aObserver)
: CComponentTester(aDataLogger, aObserver)
	{
	// Do nothing here.
	}

/**
@SYMTestCaseID          SYSLIB-ECOM-CT-0778
@SYMTestCaseDesc	    Tests for the implementations of CDataLogger class
@SYMTestPriority 	    High
@SYMTestActions  	    Tests for create and destroy,dump memory,log and report information operations
@SYMTestExpectedResults Test must not fail
@SYMREQ                 REQ0000
*/
inline void CDataLogger_ComponentTest::ConstructL()
	{
	// Perform base class initialization
	ComponentTesterConstructL();

	AddUnitTestL(CDataLogger_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
	AddUnitTestL(CDataLogger_DumpMemoryBlock_UnitTest::NewL(iDataLogger, *this));
	AddUnitTestL(CDataLogger_LogInformation_UnitTest::NewL(iDataLogger, *this));
	AddUnitTestL(CDataLogger_ReportInformation_UnitTest::NewL(iDataLogger, *this));
	}

// ______________________________________________________________________________
//
EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
									MComponentTestObserver&	aComponentTestObserver)
	{
	return CDataLogger_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
	}

// ___________________________________________________________________________
//
// This section of the module simply includes the exported test harness template which
// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
// project file can then produce a EXE for the test project instead of a DLL.

#include <ecom/test_bed/testharnesstemplate.h>

GLDEF_C TInt E32Main()
    {
	test.Title();
	test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0778 "));

	test.End();
	test.Close();

	return E32Main_TestHarness(NewComponentTestLC);
	}