24
|
1 |
// Copyright (c) 2006-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
|
|
18 |
*/
|
|
19 |
|
|
20 |
#ifndef __TE_SIM_ADDITIONALPARAMS_TEST__
|
|
21 |
#define __TE_SIM_ADDITIONALPARAMS_TEST__
|
|
22 |
|
|
23 |
#include "Te_SimTestStepBase.h"
|
|
24 |
#include "Te_SimConstants.h"
|
|
25 |
|
|
26 |
class CSimPacketDefaultAdditionalParamsTest : public CPhBkAndPacketTestsTestStepBase
|
|
27 |
{
|
|
28 |
public:
|
|
29 |
CSimPacketDefaultAdditionalParamsTest();
|
|
30 |
virtual TVerdict doTestStepL();
|
|
31 |
|
|
32 |
private:
|
|
33 |
|
|
34 |
/** A packet service */
|
|
35 |
RPacketService iPacketService;
|
|
36 |
|
|
37 |
/** A packet context */
|
|
38 |
RPacketContext iPacketContext;
|
|
39 |
};
|
|
40 |
|
|
41 |
class CSimPacketAdditionalParamsTest : public CPhBkAndPacketTestsTestStepBase
|
|
42 |
{
|
|
43 |
public:
|
|
44 |
CSimPacketAdditionalParamsTest();
|
|
45 |
virtual TVerdict doTestStepL();
|
|
46 |
|
|
47 |
private:
|
|
48 |
|
|
49 |
/** A packet service */
|
|
50 |
RPacketService iPacketService;
|
|
51 |
|
|
52 |
/** A packet context */
|
|
53 |
RPacketContext iPacketContext;
|
|
54 |
};
|
|
55 |
|
|
56 |
class CSimPacketAdditionalParamsTest2 : public CPhBkAndPacketTestsTestStepBase
|
|
57 |
{
|
|
58 |
public:
|
|
59 |
CSimPacketAdditionalParamsTest2();
|
|
60 |
virtual TVerdict doTestStepL();
|
|
61 |
|
|
62 |
private:
|
|
63 |
|
|
64 |
/** A packet service */
|
|
65 |
RPacketService iPacketService;
|
|
66 |
|
|
67 |
/** A packet context */
|
|
68 |
RPacketContext iPacketContext;
|
|
69 |
};
|
|
70 |
|
|
71 |
class CSimPacketAdditionalParamsTest3 : public CPhBkAndPacketTestsTestStepBase
|
|
72 |
{
|
|
73 |
public:
|
|
74 |
CSimPacketAdditionalParamsTest3();
|
|
75 |
virtual TVerdict doTestStepL();
|
|
76 |
|
|
77 |
private:
|
|
78 |
|
|
79 |
/** A packet service */
|
|
80 |
RPacketService iPacketService;
|
|
81 |
|
|
82 |
/** A packet context */
|
|
83 |
RPacketContext iPacketContext;
|
|
84 |
};
|
|
85 |
|
|
86 |
class CSimPacketBinaryAdditionalParamsTest1 : public CPhBkAndPacketTestsTestStepBase
|
|
87 |
{
|
|
88 |
public:
|
|
89 |
CSimPacketBinaryAdditionalParamsTest1();
|
|
90 |
virtual TVerdict doTestStepL();
|
|
91 |
|
|
92 |
private:
|
|
93 |
|
|
94 |
/** A packet service */
|
|
95 |
RPacketService iPacketService;
|
|
96 |
|
|
97 |
/** A packet context */
|
|
98 |
RPacketContext iPacketContext;
|
|
99 |
};
|
|
100 |
|
|
101 |
class CSimPacketBinaryAdditionalParamsTest2 : public CPhBkAndPacketTestsTestStepBase
|
|
102 |
{
|
|
103 |
public:
|
|
104 |
CSimPacketBinaryAdditionalParamsTest2();
|
|
105 |
virtual TVerdict doTestStepL();
|
|
106 |
|
|
107 |
private:
|
|
108 |
|
|
109 |
/** A packet service */
|
|
110 |
RPacketService iPacketService;
|
|
111 |
|
|
112 |
/** A packet context */
|
|
113 |
RPacketContext iPacketContext;
|
|
114 |
};
|
|
115 |
|
|
116 |
class CSimPacketDefaultBinaryAdditionalParamsTest : public CPhBkAndPacketTestsTestStepBase
|
|
117 |
{
|
|
118 |
public:
|
|
119 |
CSimPacketDefaultBinaryAdditionalParamsTest();
|
|
120 |
virtual TVerdict doTestStepL();
|
|
121 |
|
|
122 |
private:
|
|
123 |
|
|
124 |
/** A packet service */
|
|
125 |
RPacketService iPacketService;
|
|
126 |
|
|
127 |
/** A packet context */
|
|
128 |
RPacketContext iPacketContext;
|
|
129 |
};
|
|
130 |
|
|
131 |
#endif // __TE_SIM_ADDITIONALPARAMS_TEST__
|