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: // exported as /epoc32/include/ecom/test_bed/testharnesstemplate.h sl@0: // This file contains the pointer to the global function sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @test sl@0: */ sl@0: sl@0: #ifndef __TESTHARNESSTEMPLATE_H__ sl@0: #define __TESTHARNESSTEMPLATE_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: // Pointer to the global function which must be defined in the sl@0: // test DLL. This test harness will use this function pointer to kick start the sl@0: // tests and expects it to create the derived CComponentTester object which sl@0: // knows about thes tests required AND *push it onto the clean up stack*, sl@0: // hence the LC name. Note that it passes its func. pointer into the sl@0: // Test_Bed library which subsequently calls it, twice during testing. sl@0: typedef CComponentTester* (*TNewComponentTestLC)(CDataLogger& aDataLogger, MComponentTestObserver& aComponentTestObserver); sl@0: sl@0: IMPORT_C TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC); sl@0: sl@0: #endif // __TESTHARNESSTEMPLATE_H__