telephonyserver/etelsimtoolkit/tetel/Te_EtelSat/Te_EtelSatTestStepBase.h
changeset 0 3553901f7fa8
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 2005-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 #ifndef __TE_ETELSAT_TESTSTEP_BASE__
       
    17 #define __TE_ETELSAT_TESTSTEP_BASE__
       
    18 
       
    19 #include <test/testexecutestepbase.h>
       
    20 
       
    21 #include "f32file.h"
       
    22 #include "c32comm.h"
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 #include "testdef.h"
       
    27 #include "TSatLog.h"
       
    28 #include "Etelsat.h"
       
    29 #include <satcs.h>
       
    30 
       
    31 #include "Tetelcs.h"
       
    32 
       
    33 class CRSatTestStep : public CTestStep
       
    34 	{
       
    35 public:
       
    36  	virtual TVerdict doTestStepPreambleL();
       
    37 	virtual TVerdict doTestStepPostambleL();
       
    38 protected:
       
    39 	RTelServer iTelServer;
       
    40 	TInt iTestCount;
       
    41 	RPhone phone;
       
    42 	RSat sat;
       
    43 	TRequestStatus reqStatus;
       
    44 	TInt action;
       
    45 	TInt icon;
       
    46 	RSat::TItem item;
       
    47 	RSat::TTextAttribute iTextAttribute;
       
    48 	TInt index;
       
    49 private:
       
    50 	CActiveScheduler* iTestScheduler;
       
    51 	};
       
    52 
       
    53 class RTestSat : public RSat
       
    54 	{
       
    55 public:
       
    56 	RTestSat();
       
    57 	TInt TestCustomIPC1();
       
    58 	};
       
    59 
       
    60 #endif // __TE_ETELSAT_TESTSTEP_BASE__
       
    61 
       
    62