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 CResolver 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 "StateAccessor.h"
22 #include <test_bed/testbeddefinitions.h>
23 #include <test_bed/unittest.h>
24 #include <test_bed/datalogger.h>
25 #include "ComponentTester.h"
27 #include "DefaultResolver.h"
29 #include "ResolverUnitTests.h"
31 RTest test(_L("ResolverTest.cpp"));
33 // ______________________________________________________________________________
38 Comments : Test the CDefaultResolver class.
40 class CDefaultResolver_ComponentTest : public CComponentTester
44 @fn NewLC(CDataLogger& aDataLogger,
45 MComponentTestObserver& aObserver)
46 Intended Usage : Standard two-phase construction which leaves nothing on the
48 Error Condition : Leaves with the error code.
51 @param aDataLogger The output logging object.
52 @param aObserver The observer of this component test.
53 @return CDefaultResolver_ComponentTest* The constructed object.
55 @post CDefaultResolver_ComponentTest is fully constructed.
57 static CDefaultResolver_ComponentTest* NewLC(CDataLogger& aDataLogger,
58 MComponentTestObserver& aObserver);
62 @fn CDefaultResolver_ComponentTest(CDataLogger& aDataLogger,
63 MComponentTestObserver& aObserver)
64 Intended Usage : Standard c'tor method.
65 Error Condition : None.
67 @param aDataLogger The logging object.
68 @param aObserver The observer of this component test.
70 @post CDefaultResolver_ComponentTest is fully constructed.
72 inline CDefaultResolver_ComponentTest(CDataLogger& aDataLogger,
73 MComponentTestObserver& aObserver);
76 Intended Usage : Second phase of safe two phase construction,
77 to complete the object initialisation.
78 Error Condition : Leaves with an error code.
82 @pre CDefaultResolver_ComponentTest is fully constructed.
83 @post CDefaultResolver_ComponentTest is fully initialised.
85 inline void ConstructL();
87 }; // CDefaultResolver_ComponentTest
89 // ______________________________________________________________________________
91 inline CDefaultResolver_ComponentTest* CDefaultResolver_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
93 CDefaultResolver_ComponentTest* self = new (ELeave) CDefaultResolver_ComponentTest(aDataLogger, aObserver);
94 CleanupStack::PushL(self);
99 inline CDefaultResolver_ComponentTest::CDefaultResolver_ComponentTest(CDataLogger& aDataLogger,
100 MComponentTestObserver& aObserver)
101 : CComponentTester(aDataLogger, aObserver)
106 inline void CDefaultResolver_ComponentTest::ConstructL()
108 // Perform base class initialization
109 ComponentTesterConstructL();
111 AddUnitTestL(CDefaultResolver_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
112 AddUnitTestL(CDefaultResolver_IdentifyImplementation_UnitTest::NewL(iDataLogger, *this));
115 // ______________________________________________________________________________
117 EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
118 MComponentTestObserver& aComponentTestObserver)
120 return CDefaultResolver_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
123 // ___________________________________________________________________________
125 // This section of the module simply includes the exported test harness template which
126 // makes this a "whole" CPP file with a E32Main entry point below. The test MMP
127 // project file can then produce a EXE for the test project instead of a DLL.
129 #include <ecom/test_bed/testharnesstemplate.h>
131 GLDEF_C TInt E32Main()
134 test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-RESOLVERTEST-0001 "));
139 return E32Main_TestHarness(NewComponentTestLC);