sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: sl@0: #include "TestUtilities.h" // For __FILE__LINE__ sl@0: #include "SuicideTest.h" sl@0: #include "SuicideUnitTests.h" sl@0: sl@0: CSuicideTest::CSuicideTest(CDataLogger& aDataLogger, sl@0: MComponentTestObserver& aObserver) sl@0: : CComponentTester(aDataLogger, aObserver) sl@0: { sl@0: } sl@0: sl@0: CSuicideTest* CSuicideTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver) sl@0: { sl@0: CSuicideTest* self = new (ELeave) CSuicideTest(aDataLogger, aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: void CSuicideTest::ConstructL() sl@0: { sl@0: ComponentTesterConstructL(); sl@0: AddUnitTestL(CSuicideInterfaceFireAndForgetUnitTest::NewL(iDataLogger, *this)); sl@0: AddUnitTestL(CSuicideInterfaceCreateAndDestroyUnitTest::NewL(iDataLogger, *this)); sl@0: } sl@0: sl@0: EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger, sl@0: MComponentTestObserver& aComponentTestObserver) sl@0: { sl@0: return CSuicideTest::NewLC(aDataLogger, aComponentTestObserver); sl@0: } sl@0: sl@0: // ___________________________________________________________________________ sl@0: // sl@0: // This section of the module simply includes the exported test harness template which sl@0: // makes this a "whole" CPP file with a E32Main entry point below. The test MMP sl@0: // project file can then produce a EXE for the test project instead of a DLL. sl@0: sl@0: #include sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: return E32Main_TestHarness(NewComponentTestLC); sl@0: } sl@0: