os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/console_app/TestHarnessTemplate.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // exported as /epoc32/include/ecom/test_bed/testharnesstemplate.h
    15 // This file contains the pointer to the global function
    16 // 
    17 //
    18 
    19 /**
    20  @file
    21  @internalComponent
    22  @test
    23 */
    24 
    25 #ifndef __TESTHARNESSTEMPLATE_H__
    26 #define __TESTHARNESSTEMPLATE_H__
    27 
    28 #include <ecom/test_bed/datalogger.h>
    29 #include <ecom/test_bed/componenttestobserver.h>
    30 
    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);
    38 
    39 IMPORT_C TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC);
    40 
    41 #endif // __TESTHARNESSTEMPLATE_H__