diff -r 000000000000 -r 3553901f7fa8 telephonyutils/etel3rdpartyapi/Test/te_etelisvcaps/src/linefunctsteps.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyutils/etel3rdpartyapi/Test/te_etelisvcaps/src/linefunctsteps.h Tue Feb 02 01:41:59 2010 +0200 @@ -0,0 +1,71 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Definition of all test objects required to verify capability check on +// ETel3rdParty line functionality part. +// +// + +/** + @file + @internalTechnology +*/ + +#ifndef __LINEFUNCTSTEPS_H__ +#define __LINEFUNCTSTEPS_H__ + +#include +#include "te_etelisvcapsstepbase.h" + + +// +class CGetLineStatusTestStep : public CTe_CapsTestSuiteStepBase + { +public: + CGetLineStatusTestStep(); + +private: + virtual TInt IssueRequestL(TRequestStatus& aStatus); + virtual TInt CancelRequestL(); + +private: + CTelephony::TCallStatusV1 iCallStatus; + CTelephony::TCallStatusV1Pckg iCallStatusPckg; + }; + +_LIT(KCapsTestGetLineStatusStr,"GetLineStatusTestStep"); + +// +class CGetCallInfoTestStep : public CTe_CapsTestSuiteStepBase + { +public: + CGetCallInfoTestStep(); + +private: + virtual TInt IssueRequestL(TRequestStatus& aStatus); + virtual TInt CancelRequestL(); + +private: + CTelephony::TCallInfoV1 iCallInfo; + CTelephony::TCallInfoV1Pckg iCallInfoPckg; + CTelephony::TRemotePartyInfoV1 iRCallInfo; + CTelephony::TRemotePartyInfoV1Pckg iRCallInfoPckg; + CTelephony::TCallSelectionV1 iCallSelection; + CTelephony::TCallSelectionV1Pckg iCallSelectionPckg; + }; + +_LIT(KCapsTestGetCallInfoStr,"GetCallInfoTestStep"); + +// + +#endif // __LINEFUNCTSTEPS_H__