commsfwtools/preparedefaultcommsdatabase/Tools/cdbtest/inc/testexecuteserverbase.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 /**
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * This contains CTestServer. This is a replacement for the file defined by TestExecute 
       
    16 * and is intended for use by the testcommsdat test harness. This is used in an environment 
       
    17 * that will not be using the TestExecute framework.
       
    18 * 
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 /**
       
    25  @file testexecuteserverbase.h
       
    26 */
       
    27 #ifndef TESTEXECUTESERVERBASE_H
       
    28 #define TESTEXECUTESERVERBASE_H
       
    29 
       
    30 #include <e32base.h>
       
    31 #include "testexecutestepbase.h"
       
    32 
       
    33 class CTestServer : public CBase
       
    34 /**
       
    35 @publishedPartner
       
    36 @test
       
    37 */
       
    38 	{
       
    39 public:
       
    40 	IMPORT_C virtual ~CTestServer();
       
    41 	IMPORT_C virtual void ConstructL(const TDesC& aName);
       
    42 	
       
    43 	/**
       
    44 	 * Creates the test step.
       
    45 	 *
       
    46 	 * @param aStepName - test step name to run.
       
    47 	 *
       
    48 	 * @return - A CTestStep derived instance
       
    49 	 */
       
    50 	virtual CTestStep* CreateTestStep(const TDesC& aStepName) = 0;
       
    51 
       
    52 	};
       
    53 
       
    54 #endif