datasourcemodules/gpspositioningmodule/lbsagpspsy/test/inc/te_lbsagpspsysuite.h
changeset 51 95c570bf4a05
equal deleted inserted replaced
45:15a2125aa2f3 51:95c570bf4a05
       
     1 // Copyright (c) 2008-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 // This is the test server for Lbs AGPS PSY tests.
       
    15 // 
       
    16 //
       
    17 
       
    18 #if (!defined __TE_LBSAGPSPSYSUITE_H__)
       
    19 #define __TE_LBSAGPSPSYSUITE_H__
       
    20 
       
    21 #include <test/testexecuteserverbase.h>
       
    22 
       
    23 #include "te_lbspsystaticdata.h"
       
    24 #include "LbsInternalInterface.h"
       
    25 
       
    26 /**
       
    27 This is the test server for Lbs AGPS PSY tests.
       
    28 */
       
    29 class CTe_LbsAgpsPsySuite : public CTestServer, public MTe_LbsPsyStaticData
       
    30 	{
       
    31 public:
       
    32 	static CTe_LbsAgpsPsySuite* NewL();
       
    33 	virtual ~CTe_LbsAgpsPsySuite();
       
    34 
       
    35 	virtual CTestStep* CreateTestStep(const TDesC& aStepName);
       
    36 	
       
    37 	//From MTe_PsySpecificData
       
    38 	virtual TUid ModuleUid() const;
       
    39 	virtual const RLbsPositionUpdateRequests::TChannelIdentifer& UpdateReqChanId() const;
       
    40 	virtual TUint CountPositioner();
       
    41 	virtual CTestExecuteLogger& Logger() const;
       
    42 	
       
    43 protected:
       
    44 	void ConstructL();
       
    45 	
       
    46 private:
       
    47 	CTestStep* CreateTestStepL(const TDesC& aStepName);
       
    48 	
       
    49 	TBuf8<KMaxFileName> iFirstExe;
       
    50 	TUint iPositionerCount;
       
    51 	CTestStep* iCurrentStep;
       
    52 	};
       
    53 
       
    54 #endif //__TE_LBSAGPSPSYSUITE_H__