os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerTest.cpp
First public contribution.
1 // Copyright (c) 1997-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 CLoadManager 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 "LoadManagerUnitTest.h"
22 #include "ComponentTester.h"
24 RTest test(_L("LoadManagerTest.cpp"));
26 // ______________________________________________________________________________
30 Comments : Test the CLoadManager class.
32 class CLoadManager_ComponentTest : public CComponentTester
36 @fn NewLC(CDataLogger& aDataLogger,
37 MComponentTestObserver& aObserver)
38 Intended Usage : Standard two-phase construction which leaves nothing on the
40 Error Condition : Leaves with the error code.
43 @param aDataLogger The output logging object.
44 @param aObserver The observer of this component test.
45 @return CLoadManager_ComponentTest* The constructed object.
47 @post CLoadManager_ComponentTest is fully constructed.
49 static CLoadManager_ComponentTest* NewLC(CDataLogger& aDataLogger,
50 MComponentTestObserver& aObserver);
54 @fn CLoadManager_ComponentTest(CDataLogger& aDataLogger,
55 MComponentTestObserver& aObserver)
56 Intended Usage : Standard c'tor method.
57 Error Condition : None.
59 @param aDataLogger The logging object.
60 @param aObserver The observer of this component test.
62 @post CLoadManager_ComponentTest is fully constructed.
64 inline CLoadManager_ComponentTest(CDataLogger& aDataLogger,
65 MComponentTestObserver& aObserver);
68 Intended Usage : Second phase of safe two phase construction,
69 to complete the object initialisation.
70 Error Condition : Leaves with an error code.
74 @pre CLoadManager_ComponentTest is fully constructed.
75 @post CLoadManager_ComponentTest is fully initialised.
77 inline void ConstructL();
79 }; // CLoadManager_ComponentTest
82 // ______________________________________________________________________________
84 inline CLoadManager_ComponentTest* CLoadManager_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
86 CLoadManager_ComponentTest* self = new (ELeave) CLoadManager_ComponentTest(aDataLogger, aObserver);
87 CleanupStack::PushL(self);
92 inline CLoadManager_ComponentTest::CLoadManager_ComponentTest(CDataLogger& aDataLogger,
93 MComponentTestObserver& aObserver)
94 : CComponentTester(aDataLogger, aObserver)
99 inline void CLoadManager_ComponentTest::ConstructL()
101 // Perform base class initialization
102 ComponentTesterConstructL();
104 AddUnitTestL(CLoadManager_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
105 //AddUnitTestL(CLoadManager_FindInstantiationAndDestroy_UnitTest::NewL(iDataLogger, *this));
106 AddUnitTestL(CLoadManager_FindInstantiationFailure_UnitTest::NewL(iDataLogger, *this));
107 //AddUnitTestL(CLoadManager_DefectFOT56ULPM_UnitTest::NewL(iDataLogger, *this));
110 // ______________________________________________________________________________
112 EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
113 MComponentTestObserver& aComponentTestObserver)
115 return CLoadManager_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
118 // ___________________________________________________________________________
120 // This section of the module simply includes the exported test harness template which
121 // makes this a "whole" CPP file with a E32Main entry point below. The test MMP
122 // project file can then produce a EXE for the test project instead of a DLL.
124 #include <ecom/test_bed/testharnesstemplate.h>
126 GLDEF_C TInt E32Main()
129 test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-LOADMANAGERTEST-0001 "));
134 return E32Main_TestHarness(NewComponentTestLC);