os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTest.cpp
Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Demonstrates a simple set of derived class implementations to
15 // test the CBackupNotifier class using the test bed.
16 // It may be used as a basis to develop a full test bed dll.
17 // For support and comment please contact the authors.
21 #include "BackupNotifierUnitTest.h"
22 #include "ComponentTester.h"
24 // ______________________________________________________________________________
29 Comments : Test the CBackupNotifier class.
31 class CBackupNotifier_ComponentTest : public CComponentTester
35 @fn NewLC(CDataLogger& aDataLogger,
36 MComponentTestObserver& aObserver)
37 Intended Usage : Standard two-phase construction which leaves nothing on the
39 Error Condition : Leaves with the error code.
42 @param aDataLogger The output logging object.
43 @param aObserver The observer of this component test.
44 @return CBackupNotifier_ComponentTest* The constructed object.
46 @post CBackupNotifier_ComponentTest is fully constructed.
48 static CBackupNotifier_ComponentTest* NewLC(CDataLogger& aDataLogger,
49 MComponentTestObserver& aObserver);
53 @fn CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
54 MComponentTestObserver& aObserver)
55 Intended Usage : Standard c'tor method.
56 Error Condition : None.
58 @param aDataLogger The logging object.
59 @param aObserver The observer of this component test.
61 @post CBackupNotifier_ComponentTest is fully constructed.
63 inline CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
64 MComponentTestObserver& aObserver);
67 Intended Usage : Second phase of safe two phase construction,
68 to complete the object initialisation.
69 Error Condition : Leaves with an error code.
73 @pre CBackupNotifier_ComponentTest is fully constructed.
74 @post CBackupNotifier_ComponentTest is fully initialised.
76 inline void ConstructL();
78 }; // CBackupNotifier_ComponentTest
80 // ______________________________________________________________________________
82 inline CBackupNotifier_ComponentTest* CBackupNotifier_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
84 CBackupNotifier_ComponentTest* self = new (ELeave) CBackupNotifier_ComponentTest(aDataLogger, aObserver);
85 CleanupStack::PushL(self);
90 inline CBackupNotifier_ComponentTest::CBackupNotifier_ComponentTest(CDataLogger& aDataLogger,
91 MComponentTestObserver& aObserver)
92 : CComponentTester(aDataLogger, aObserver)
97 inline void CBackupNotifier_ComponentTest::ConstructL()
99 // Perform base class initialization
100 ComponentTesterConstructL();
102 AddUnitTestL(CBackupNotifier_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
105 // ______________________________________________________________________________
107 EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
108 MComponentTestObserver& aComponentTestObserver)
110 return CBackupNotifier_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
113 // ___________________________________________________________________________
115 // This section of the module simply includes the exported test harness template which
116 // makes this a "whole" CPP file with a E32Main entry point below. The test MMP
117 // project file can then produce a EXE for the test project instead of a DLL.
119 #include <ecom/test_bed/testharnesstemplate.h>
121 GLDEF_C TInt E32Main()
123 return E32Main_TestHarness(NewComponentTestLC);