os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTest.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
// Demonstrates a simple set of derived class implementations to
sl@0
    15
// test the CBackupNotifier class using the test bed.
sl@0
    16
// It may be used as a basis to develop a full test bed dll.
sl@0
    17
// For support and comment please contact the authors.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
#include "BackupNotifierUnitTest.h"
sl@0
    22
#include "ComponentTester.h"
sl@0
    23
sl@0
    24
// ______________________________________________________________________________
sl@0
    25
//
sl@0
    26
/**
sl@0
    27
	@internalComponent
sl@0
    28
sl@0
    29
	Comments : Test the CBackupNotifier class.
sl@0
    30
 */
sl@0
    31
class CBackupNotifier_ComponentTest : public CComponentTester
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	/**
sl@0
    35
		@fn				NewLC(CDataLogger& aDataLogger,
sl@0
    36
							 MComponentTestObserver& aObserver)
sl@0
    37
		Intended Usage	: Standard two-phase construction which leaves nothing on the
sl@0
    38
						cleanup stack.
sl@0
    39
		Error Condition	: Leaves with the error code.
sl@0
    40
		@leave			KErrNoMemory
sl@0
    41
		@since			7.0
sl@0
    42
		@param			aDataLogger The output logging object.
sl@0
    43
		@param			aObserver The observer of this component test.
sl@0
    44
		@return			CBackupNotifier_ComponentTest* The constructed object.
sl@0
    45
		@pre 			None.
sl@0
    46
		@post			CBackupNotifier_ComponentTest is fully constructed.
sl@0
    47
	*/
sl@0
    48
	static CBackupNotifier_ComponentTest* NewLC(CDataLogger& aDataLogger, 
sl@0
    49
							MComponentTestObserver& aObserver);
sl@0
    50
sl@0
    51
private:
sl@0
    52
	/**
sl@0
    53
		@fn				CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
sl@0
    54
											MComponentTestObserver& aObserver)
sl@0
    55
		Intended Usage	: Standard c'tor method.
sl@0
    56
		Error Condition	: None.
sl@0
    57
		@since			7.0
sl@0
    58
		@param			aDataLogger The logging object.
sl@0
    59
		@param			aObserver The observer of this component test.
sl@0
    60
		@pre 			None.
sl@0
    61
		@post			CBackupNotifier_ComponentTest is fully constructed.
sl@0
    62
	*/
sl@0
    63
	inline CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
sl@0
    64
												MComponentTestObserver& aObserver);
sl@0
    65
	/**
sl@0
    66
		@fn				void ConstructL()
sl@0
    67
		Intended Usage	: Second phase of safe two phase construction, 
sl@0
    68
						to complete the object initialisation.
sl@0
    69
		Error Condition	: Leaves with an error code.
sl@0
    70
		@leave			KErrNoMemory.
sl@0
    71
		@since			7.0
sl@0
    72
		@return			None 
sl@0
    73
		@pre 			CBackupNotifier_ComponentTest is fully constructed.
sl@0
    74
		@post			CBackupNotifier_ComponentTest is fully initialised.
sl@0
    75
	*/
sl@0
    76
	inline void ConstructL();
sl@0
    77
sl@0
    78
	};	// CBackupNotifier_ComponentTest
sl@0
    79
sl@0
    80
// ______________________________________________________________________________
sl@0
    81
//
sl@0
    82
inline CBackupNotifier_ComponentTest* CBackupNotifier_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
sl@0
    83
	{
sl@0
    84
	CBackupNotifier_ComponentTest* self = new (ELeave) CBackupNotifier_ComponentTest(aDataLogger, aObserver);
sl@0
    85
	CleanupStack::PushL(self);
sl@0
    86
	self->ConstructL();
sl@0
    87
	return self;
sl@0
    88
	}
sl@0
    89
sl@0
    90
inline CBackupNotifier_ComponentTest::CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
sl@0
    91
									MComponentTestObserver& aObserver)
sl@0
    92
: CComponentTester(aDataLogger, aObserver)
sl@0
    93
	{
sl@0
    94
	// Do nothing here.
sl@0
    95
	}
sl@0
    96
sl@0
    97
inline void CBackupNotifier_ComponentTest::ConstructL()
sl@0
    98
	{
sl@0
    99
	// Perform base class initialization
sl@0
   100
	ComponentTesterConstructL();
sl@0
   101
sl@0
   102
	AddUnitTestL(CBackupNotifier_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
sl@0
   103
	}
sl@0
   104
sl@0
   105
// ______________________________________________________________________________
sl@0
   106
//
sl@0
   107
EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
sl@0
   108
									MComponentTestObserver&	aComponentTestObserver)
sl@0
   109
	{
sl@0
   110
	return CBackupNotifier_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
sl@0
   111
	}
sl@0
   112
sl@0
   113
// ___________________________________________________________________________
sl@0
   114
//
sl@0
   115
// This section of the module simply includes the exported test harness template which 
sl@0
   116
// makes this a "whole" CPP file with a E32Main entry point below. The test MMP 
sl@0
   117
// project file can then produce a EXE for the test project instead of a DLL.
sl@0
   118
sl@0
   119
#include <ecom/test_bed/testharnesstemplate.h>
sl@0
   120
sl@0
   121
GLDEF_C TInt E32Main()
sl@0
   122
	{
sl@0
   123
	return E32Main_TestHarness(NewComponentTestLC);
sl@0
   124
	}
sl@0
   125