telephonyserver/etelmultimode/TETEL/te_EtelMM/TE_mmcall.h
changeset 0 3553901f7fa8
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 2000-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 /**
       
    17  @file
       
    18  @internalComponent 
       
    19 */
       
    20 
       
    21 #ifndef _TE_MMCALL_H_
       
    22 #define _TE_MMCALL_H_
       
    23 
       
    24 #include "TE_EtelMMTestStepBase.h"
       
    25 #include <etelmm.h>
       
    26 
       
    27 class CTestCall : public CEtelMMTestStepBase
       
    28 	{
       
    29 public:
       
    30 	CTestCall() ;
       
    31 	~CTestCall(){} ;
       
    32 	virtual enum TVerdict doTestStepL();
       
    33 	void ValidateCallDataCaps(const RMobileCall::TMobileCallDataCapsV1 &aDataCaps);
       
    34 	void ValidateRLPRange(const RMobileCall::TMobileDataRLPRangesV1 &aRLPRanges);
       
    35 	void ValidateHscsdParams(const RMobileCall::TMobileHscsdCallParamsV1& aHcsdParams);
       
    36 	void ValidateHscsdInfo(const RMobileCall::TMobileCallHscsdInfoV1& aHcsdInfo);
       
    37 
       
    38 	void TestBasicCallFunctionality(RMobileCall& aCall, TRequestStatus &aReqStatus);
       
    39 	void TestMultimediaCall(RMobileCall& aCall, TRequestStatus &aReqStatus);
       
    40 	TInt iTestCount;
       
    41 	TBuf<RMobilePhone::KMaxMobileTelNumberSize> iNumber;
       
    42 
       
    43 	};
       
    44 
       
    45 class CTestCallb : public CEtelMMTestStepBase
       
    46 	{
       
    47 public:
       
    48 	CTestCallb() ;
       
    49 	~CTestCallb(){} ;
       
    50 	virtual enum TVerdict doTestStepL();
       
    51 	/*static*/ void ValidateMobileCallInfo(const RMobileCall::TMobileCallInfoV1 &aSyncCallInfo);
       
    52 	TInt iTestCount;
       
    53 	TBuf<RMobilePhone::KMaxMobileTelNumberSize> iNumber;
       
    54 
       
    55 	};
       
    56 
       
    57 class CTestCallc : public CEtelMMTestStepBase
       
    58 	{
       
    59 public:
       
    60 	CTestCallc() ;
       
    61 	~CTestCallc(){} ;
       
    62 	virtual enum TVerdict doTestStepL();
       
    63 	/*static*/ void ValidateRemotePartyInfoChange(const RMobileCall::TMobileCallRemotePartyInfoV1 &aRemoteParty);
       
    64 	TInt iTestCount;
       
    65 	TBuf<RMobilePhone::KMaxMobileTelNumberSize> iNumber;
       
    66 
       
    67 	};
       
    68 	
       
    69  
       
    70 class CTestCallISV : public CEtelMMTestStepBase
       
    71 	{
       
    72 public:
       
    73 	CTestCallISV() ;
       
    74 	~CTestCallISV(){} ;
       
    75 	virtual enum TVerdict doTestStepL();
       
    76 	TInt iTestCount;
       
    77 	};
       
    78 
       
    79 
       
    80 #endif