lbstest/lbstestproduct/LbsROMspecificSuites/inc/ctlbstestsuiteserver.h
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     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 *
       
    16 */
       
    17 
       
    18 
       
    19 /**
       
    20  @file 
       
    21  @internalTechnology
       
    22  @test
       
    23 */
       
    24 
       
    25 #ifndef __CT_LBSTESTSUITE_SERVER_H__
       
    26 #define __CT_LBSTESTSUITE_SERVER_H__
       
    27 #include <test/testexecuteserverbase.h>
       
    28 
       
    29 #include "ctlbsserver.h"
       
    30 
       
    31 class CTe_TestSuite : public CT_LbsServer
       
    32 	{
       
    33 public:
       
    34 	static CTe_TestSuite* NewL();
       
    35 	// Base class pure virtual override
       
    36 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    37 	virtual ~CTe_TestSuite();
       
    38 	CTe_TestSuite();
       
    39 
       
    40 protected:
       
    41 	void ConstructL();
       
    42 private:
       
    43 	//CTe_SystemStarter iStarter;
       
    44 	};
       
    45 
       
    46 #endif //__CT_LBSTESTSUITE_SERVER_H__