resourcemgmt/hwresourcesmgr/test/te_hwrm/hwrmtestserver_pr.cpp
changeset 0 4e1aa6a622a0
child 52 d6b9e89d80a3
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2007-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 //
       
    15 
       
    16 #include <ctefunitserver.h>
       
    17 #include <tefunit.h>
       
    18 #include "hwrmtest.h"
       
    19 
       
    20 // Require: return server name : must be the same that the exe name
       
    21 _LIT( KServerName, "te_hwrm_pr" );
       
    22 GLDEF_C const TTestName ServerName()
       
    23 	{
       
    24 	TTestName serverName(KServerName);
       
    25 	return serverName;
       
    26 	}
       
    27 
       
    28 // Require: return the root test suite
       
    29 GLDEF_C CTestSuite* CreateTestSuiteL()
       
    30 	{
       
    31 	START_SUITE
       
    32 	ADD_TEST_SUITE(CHWRMTest)
       
    33 	END_SUITE
       
    34 	}
       
    35 
       
    36 // Require: create std TEF test case
       
    37 GLDEF_D CTestStep* CreateTEFTestStep(const TDesC& /*aStepName*/, CTEFUnitServer& /*aServer*/)
       
    38 	{
       
    39 	// this allow std TEF test steps to be created and run inside TEFUnit
       
    40 	return NULL;
       
    41 	}