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