24
|
1 |
// Copyright (c) 2008-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 Test step declarations for the USimApplication functional unit.
|
|
18 |
@internalTechnology
|
|
19 |
*/
|
|
20 |
|
|
21 |
#ifndef __CCTSYINTEGRATIONTESTUSIMAPPLICATION_H__
|
|
22 |
#define __CCTSYINTEGRATIONTESTUSIMAPPLICATION_H__
|
|
23 |
|
|
24 |
#include <test/testexecutestepbase.h>
|
|
25 |
#include "cctsyintegrationtestsuitebase.h"
|
|
26 |
#include "tcallcontroltsytesthelper.h"
|
|
27 |
#include "tsupplementaltsytesthelper.h"
|
|
28 |
#include "tnetworktsytesthelper.h"
|
|
29 |
|
|
30 |
class CEtelSessionMgr;
|
|
31 |
|
|
32 |
class CCTSYIntegrationTestUSimApplicationBase : public CCTSYIntegrationTestSuiteStepBase
|
|
33 |
{
|
|
34 |
public:
|
|
35 |
|
|
36 |
CCTSYIntegrationTestUSimApplicationBase(CEtelSessionMgr& aEtelSessionMgr);
|
|
37 |
virtual ~CCTSYIntegrationTestUSimApplicationBase();
|
|
38 |
|
|
39 |
}; // class CCTSYIntegrationTestUSimApplicationBase
|
|
40 |
|
|
41 |
class CCTSYIntegrationTestUSimApplication0001 : public CCTSYIntegrationTestUSimApplicationBase
|
|
42 |
{
|
|
43 |
public:
|
|
44 |
|
|
45 |
CCTSYIntegrationTestUSimApplication0001(CEtelSessionMgr& aEtelSessionMgr);
|
|
46 |
~CCTSYIntegrationTestUSimApplication0001();
|
|
47 |
virtual TVerdict doTestStepL();
|
|
48 |
static TPtrC GetTestStepName();
|
|
49 |
|
|
50 |
private:
|
|
51 |
|
|
52 |
}; // class CCTSYIntegrationTestUSimApplication0001
|
|
53 |
|
|
54 |
#endif // __CCTSYINTEGRATIONTESTUSIMAPPLICATION_H__
|