telephonyutils/etel3rdpartyapi/Test/te_etelisvcaps/src/supplementaryfunctsteps.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 supplementary functionality part.
// 
//

/**
 @file 
 @internalTechnology
*/
 
#ifndef __SUPPLEMENTARYFUNCTSTEPS_H__
#define __SUPPLEMENTARYFUNCTSTEPS_H__

#include <test/testexecutestepbase.h>
#include "te_etelisvcapsstepbase.h"

//
class CGetCallForwardingStatusTestStep : public CTe_CapsTestSuiteStepBase
	{
public:
	CGetCallForwardingStatusTestStep();

private:
	virtual TInt IssueRequestL(TRequestStatus& aStatus);
	virtual TInt CancelRequestL();

private:
	CTelephony::TCallForwardingSupplServicesV1 iCallForwarding;
	CTelephony::TCallForwardingSupplServicesV1Pckg iCallForwardingPckg;
	};

_LIT(KCapsTestGetCallForwardingStr,"GetCallForwardingTestStep");

//
class CGetCallBarringStatusTestStep : public CTe_CapsTestSuiteStepBase
	{
public:
	CGetCallBarringStatusTestStep();

private:
	virtual TInt IssueRequestL(TRequestStatus& aStatus);
	virtual TInt CancelRequestL();

private:
	CTelephony::TCallBarringSupplServicesV1 iCallBarring;
	CTelephony::TCallBarringSupplServicesV1Pckg iCallBarringPckg;
	};

_LIT(KCapsTestGetCallBarringStr,"GetCallBarringTestStep");

//
class CGetCallWaitingStatusTestStep : public CTe_CapsTestSuiteStepBase
	{
public:
	CGetCallWaitingStatusTestStep();

private:
	virtual TInt IssueRequestL(TRequestStatus& aStatus);
	virtual TInt CancelRequestL();

private:
	CTelephony::TCallWaitingSupplServicesV1 iCallWaiting;
	CTelephony::TCallWaitingSupplServicesV1Pckg iCallWaitingPckg;
	};

_LIT(KCapsTestGetCallWaitingStr,"GetCallWaitingTestStep");

//
class CGetIdentityServiceTestStep : public CTe_CapsTestSuiteStepBase
	{
public:
	CGetIdentityServiceTestStep();

private:
	virtual TInt IssueRequestL(TRequestStatus& aStatus);
	virtual TInt CancelRequestL();

private:
	CTelephony::TIdentityServiceV1 iIdentityService;
	CTelephony::TIdentityServiceV1Pckg iIdentityServicePckg;
	};

_LIT(KCapsTestGetIdentityServiceStr,"GetIdentityServiceTestStep");

//
#endif // __SUPPLEMENTARYFUNCTSTEPS_H__