--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTest.cpp Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,187 @@
+// 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 CTestManager 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 "TestManagerUnitTest.h"
+#include "ComponentTester.h"
+
+RTest test(_L("TestManagerTest.cpp"));
+
+// ______________________________________________________________________________
+//
+/**
+ @internalComponent
+
+ Comments : Test the CTestManager class.
+ */
+class CTestManager_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 6.0
+ @param aDataLogger The output logging object.
+ @param aObserver The observer of this component test.
+ @return CTestManager_ComponentTest* The constructed object.
+ @pre None.
+ @post CTestManager_ComponentTest is fully constructed.
+ */
+ static CTestManager_ComponentTest* NewLC(CDataLogger& aDataLogger,
+ MComponentTestObserver& aObserver);
+
+private:
+ /**
+ @fn CTestManager_ComponentTest(CDataLogger& aDataLogger,
+ MComponentTestObserver& aObserver)
+ Intended Usage : Standard c'tor method.
+ Error Condition : None.
+ @since 6.0
+ @param aDataLogger The logging object.
+ @param aObserver The observer of this component test.
+ @pre None.
+ @post CTestManager_ComponentTest is fully constructed.
+ */
+ inline CTestManager_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 6.0
+ @return None
+ @pre CTestManager_ComponentTest is fully constructed.
+ @post CTestManager_ComponentTest is fully initialised.
+ */
+ inline void ConstructL();
+
+ }; // CTestManager_ComponentTest
+
+// ______________________________________________________________________________
+//
+inline CTestManager_ComponentTest* CTestManager_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
+ {
+ CTestManager_ComponentTest* self = new (ELeave) CTestManager_ComponentTest(aDataLogger, aObserver);
+ CleanupStack::PushL(self);
+ self->ConstructL();
+ return self;
+ }
+
+inline CTestManager_ComponentTest::CTestManager_ComponentTest(CDataLogger& aDataLogger,
+ MComponentTestObserver& aObserver)
+: CComponentTester(aDataLogger, aObserver)
+ {
+ // Do nothing here.
+ }
+
+inline void CTestManager_ComponentTest::ConstructL()
+ {
+ // Perform base class initialization
+ ComponentTesterConstructL();
+
+ AddUnitTestL(CTestManager_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
+ AddUnitTestL(CTestManager_ManageTests_UnitTest::NewL(iDataLogger, *this));
+ }
+
+// ______________________________________________________________________________
+//
+EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
+ MComponentTestObserver& aComponentTestObserver)
+ {
+ return CTestManager_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
+ }
+
+// ______________________________________________________________________________
+//
+class CTestManager_ComponentTest_STUB : public CComponentTester
+ {
+public:
+ static CTestManager_ComponentTest_STUB* NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
+
+private:
+ inline CTestManager_ComponentTest_STUB(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
+ inline void ConstructL();
+ };
+
+// ______________________________________________________________________________
+//
+inline CTestManager_ComponentTest_STUB* CTestManager_ComponentTest_STUB::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
+ {
+ CTestManager_ComponentTest_STUB* self = new (ELeave) CTestManager_ComponentTest_STUB(aDataLogger, aObserver);
+ CleanupStack::PushL(self);
+ self->ConstructL();
+ return self;
+ }
+
+inline CTestManager_ComponentTest_STUB::CTestManager_ComponentTest_STUB(CDataLogger& aDataLogger,
+ MComponentTestObserver& aObserver)
+: CComponentTester(aDataLogger, aObserver)
+ {
+ // Do nothing here.
+ }
+
+/**
+@SYMTestCaseID SYSLIB-ECOM-CT-0781
+@SYMTestCaseDesc Tests for the implementations of CTestManager class
+@SYMTestPriority High
+@SYMTestActions Tests for create and destroy operations
+@SYMTestExpectedResults Test must not fail
+@SYMREQ REQ0000
+*/
+inline void CTestManager_ComponentTest_STUB::ConstructL()
+ {
+ // Perform base class initialization
+ ComponentTesterConstructL();
+
+ AddUnitTestL(CTestManager_CreateAndDestroy_UnitTest_STUB::NewL(iDataLogger, *this));
+ }
+
+// ______________________________________________________________________________
+//
+EXPORT_C CComponentTester* NewComponentTestLC_STUB(CDataLogger& aDataLogger,
+ MComponentTestObserver& aComponentTestObserver)
+ {
+ return CTestManager_ComponentTest_STUB::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-0781 "));
+
+ test.End();
+ test.Close();
+
+ return E32Main_TestHarness(NewComponentTestLC);
+ }
+