24
|
1 |
// Copyright (c) 2002-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_ETELSATPCMDS1E_H_
|
|
17 |
#define _TE_ETELSATPCMDS1E_H_
|
|
18 |
|
|
19 |
#include <etel.h>
|
|
20 |
|
|
21 |
class CTestSatPCmds1e : public CRSatTestStep
|
|
22 |
{
|
|
23 |
public:
|
|
24 |
CTestSatPCmds1e() ;
|
|
25 |
~CTestSatPCmds1e(){} ;
|
|
26 |
virtual enum TVerdict doTestStepL();
|
|
27 |
|
|
28 |
|
|
29 |
private:
|
|
30 |
|
|
31 |
void ExtendedTest1L( TRequestStatus& reqStatus,
|
|
32 |
RSat::TOpenCsChannelV2& aOpenCsChannel,
|
|
33 |
RSat::TOpenCsChannelV2Pckg& aOpenCsChannelPckg,
|
|
34 |
RSat::TOpenGprsChannelV4& aOpenGprsChannel,
|
|
35 |
RSat::TOpenGprsChannelV4Pckg& aOpenGprsChannelPckg);
|
|
36 |
|
|
37 |
void ExtendedTest2L( TRequestStatus& reqStatus, RSat::TCloseChannelV2& aCloseChannel);
|
|
38 |
|
|
39 |
void ExtendedTest3L( TRequestStatus& reqStatus, RSat::TDeclareServiceV2& aDeclareService);
|
|
40 |
|
|
41 |
};
|
|
42 |
|
|
43 |
#endif
|
|
44 |
|