telephonyutils/etel3rdpartyapi/Test/te_etelisvcaps/src/linefunctsteps.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 23:59:33 +0200
branchRCL_3
changeset 9 962e6306d9d2
parent 0 3553901f7fa8
child 24 6638e7f4bd8f
permissions -rw-r--r--
Revision: 201007 Kit: 201007

// 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 <test/testexecutestepbase.h>
#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__