24
|
1 |
// Copyright (c) 2007-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 |
// Test step declarations for the SmsMessaging functional unit.
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
/**
|
|
19 |
@internalTechnology
|
|
20 |
*/
|
|
21 |
|
|
22 |
|
|
23 |
#ifndef __CCTSYINTEGRATIONTESTSMSMESSAGING_H__
|
|
24 |
#define __CCTSYINTEGRATIONTESTSMSMESSAGING_H__
|
|
25 |
|
|
26 |
|
|
27 |
#include <test/testexecutestepbase.h>
|
|
28 |
#include "cctsyintegrationtestsuitebase.h"
|
|
29 |
#include "tsmsmessagingtsytesthelper.h"
|
|
30 |
#include "tsmsstoretsytesthelper.h"
|
|
31 |
#include "tnetworktsytesthelper.h"
|
|
32 |
#include "tpacketservicetsytesthelper.h"
|
|
33 |
#include "tsimtsytesthelper.h"
|
|
34 |
#include "tcallcontroltsytesthelper.h"
|
|
35 |
|
|
36 |
class CEtelSessionMgr;
|
|
37 |
|
|
38 |
_LIT(KServiceCentreSection,"SmsServiceCentre");
|
|
39 |
_LIT(KNetworkO2,"O2");
|
|
40 |
_LIT(KNetworkVodafone,"Vodafone");
|
|
41 |
_LIT(KNetworkOrange,"Orange");
|
|
42 |
_LIT(KNetworkTMobile,"TMobile");
|
|
43 |
_LIT(KNetworkNTN,"NTN");
|
|
44 |
|
|
45 |
|
|
46 |
class CCTSYIntegrationTestSmsMessagingBase : public CCTSYIntegrationTestSuiteStepBase
|
|
47 |
{
|
|
48 |
public:
|
|
49 |
|
|
50 |
CCTSYIntegrationTestSmsMessagingBase(CEtelSessionMgr& aEtelSessionMgr);
|
|
51 |
virtual ~CCTSYIntegrationTestSmsMessagingBase();
|
|
52 |
|
|
53 |
protected:
|
|
54 |
|
|
55 |
void GetSmsServiceCentreAddressL(TPtrC &aServiceCentreAddress);
|
|
56 |
void SetSmsBearerL(RMobileSmsMessaging &aSmsMessaging, RMobileSmsMessaging::TMobileSmsBearer aBearer);
|
|
57 |
void GetSmsSendAttributesL(RMobileSmsMessaging::TMobileSmsSendAttributesV1 &aSendSmsAttributes,TBool aCallToSelf=EFalse);
|
|
58 |
RMobileSmsMessaging::TMobileSmsGsmTpdu CreateValidSmsMessageL(TDes8 &aText,
|
|
59 |
RMobileSmsMessaging::TMobileSmsSendAttributesV1& aSendSmsAttributes,
|
|
60 |
TSmsStoreTsyTestHelper::TDataCodingScheme aDataCodingScheme = TSmsStoreTsyTestHelper::ENoDataCodingScheme,
|
|
61 |
TBool aIsToSelf = EFalse,
|
|
62 |
TBool aStatusReportRequest = EFalse);
|
|
63 |
TBool ComparePDUs(RMobileSmsMessaging::TMobileSmsGsmTpdu &aRecieved, RMobileSmsMessaging::TMobileSmsGsmTpdu &aSent);
|
|
64 |
|
|
65 |
protected:
|
|
66 |
TSmsMessagingTsyTestHelper iSmsMessagingTsyTestHelper;
|
|
67 |
TSmsStoreTsyTestHelper iSmsStoreTsyTestHelper;
|
|
68 |
TNetworkTsyTestHelper iNetworkTsyTestHelper;
|
|
69 |
TPacketServiceTsyTestHelper iPacketServiceTsyTestHelper;
|
|
70 |
TSimTsyTestHelper iSimTsyTestHelper;
|
|
71 |
TCallControlTsyTestHelper iCallControlTestHelper;
|
|
72 |
|
|
73 |
}; // class CCTSYIntegrationTestSmsMessagingBase
|
|
74 |
|
|
75 |
|
|
76 |
class CCTSYIntegrationTestSmsMessaging0001 : public CCTSYIntegrationTestSmsMessagingBase
|
|
77 |
{
|
|
78 |
public:
|
|
79 |
|
|
80 |
CCTSYIntegrationTestSmsMessaging0001(CEtelSessionMgr& aEtelSessionMgr);
|
|
81 |
~CCTSYIntegrationTestSmsMessaging0001();
|
|
82 |
virtual TVerdict doTestStepL();
|
|
83 |
static TPtrC GetTestStepName();
|
|
84 |
|
|
85 |
private:
|
|
86 |
|
|
87 |
}; // class CCTSYIntegrationTestSmsMessaging0001
|
|
88 |
|
|
89 |
|
|
90 |
class CCTSYIntegrationTestSmsMessaging0002 : public CCTSYIntegrationTestSmsMessagingBase
|
|
91 |
{
|
|
92 |
public:
|
|
93 |
|
|
94 |
CCTSYIntegrationTestSmsMessaging0002(CEtelSessionMgr& aEtelSessionMgr);
|
|
95 |
~CCTSYIntegrationTestSmsMessaging0002();
|
|
96 |
virtual TVerdict doTestStepL();
|
|
97 |
static TPtrC GetTestStepName();
|
|
98 |
|
|
99 |
private:
|
|
100 |
|
|
101 |
}; // class CCTSYIntegrationTestSmsMessaging0002
|
|
102 |
|
|
103 |
|
|
104 |
class CCTSYIntegrationTestSmsMessaging0003 : public CCTSYIntegrationTestSmsMessagingBase
|
|
105 |
{
|
|
106 |
public:
|
|
107 |
|
|
108 |
CCTSYIntegrationTestSmsMessaging0003(CEtelSessionMgr& aEtelSessionMgr);
|
|
109 |
~CCTSYIntegrationTestSmsMessaging0003();
|
|
110 |
virtual TVerdict doTestStepL();
|
|
111 |
static TPtrC GetTestStepName();
|
|
112 |
|
|
113 |
private:
|
|
114 |
|
|
115 |
}; // class CCTSYIntegrationTestSmsMessaging0003
|
|
116 |
|
|
117 |
|
|
118 |
class CCTSYIntegrationTestSmsMessaging0004 : public CCTSYIntegrationTestSmsMessagingBase
|
|
119 |
{
|
|
120 |
public:
|
|
121 |
|
|
122 |
CCTSYIntegrationTestSmsMessaging0004(CEtelSessionMgr& aEtelSessionMgr);
|
|
123 |
~CCTSYIntegrationTestSmsMessaging0004();
|
|
124 |
virtual TVerdict doTestStepL();
|
|
125 |
static TPtrC GetTestStepName();
|
|
126 |
|
|
127 |
private:
|
|
128 |
|
|
129 |
}; // class CCTSYIntegrationTestSmsMessaging0004
|
|
130 |
|
|
131 |
|
|
132 |
class CCTSYIntegrationTestSmsMessaging0005 : public CCTSYIntegrationTestSmsMessagingBase
|
|
133 |
{
|
|
134 |
public:
|
|
135 |
|
|
136 |
CCTSYIntegrationTestSmsMessaging0005(CEtelSessionMgr& aEtelSessionMgr);
|
|
137 |
~CCTSYIntegrationTestSmsMessaging0005();
|
|
138 |
virtual TVerdict doTestStepL();
|
|
139 |
static TPtrC GetTestStepName();
|
|
140 |
|
|
141 |
private:
|
|
142 |
|
|
143 |
}; // class CCTSYIntegrationTestSmsMessaging0005
|
|
144 |
|
|
145 |
|
|
146 |
class CCTSYIntegrationTestSmsMessaging0006 : public CCTSYIntegrationTestSmsMessagingBase
|
|
147 |
{
|
|
148 |
public:
|
|
149 |
|
|
150 |
CCTSYIntegrationTestSmsMessaging0006(CEtelSessionMgr& aEtelSessionMgr);
|
|
151 |
~CCTSYIntegrationTestSmsMessaging0006();
|
|
152 |
virtual TVerdict doTestStepL();
|
|
153 |
static TPtrC GetTestStepName();
|
|
154 |
|
|
155 |
private:
|
|
156 |
|
|
157 |
}; // class CCTSYIntegrationTestSmsMessaging0006
|
|
158 |
|
|
159 |
|
|
160 |
class CCTSYIntegrationTestSmsMessaging0007 : public CCTSYIntegrationTestSmsMessagingBase
|
|
161 |
{
|
|
162 |
public:
|
|
163 |
|
|
164 |
CCTSYIntegrationTestSmsMessaging0007(CEtelSessionMgr& aEtelSessionMgr);
|
|
165 |
~CCTSYIntegrationTestSmsMessaging0007();
|
|
166 |
virtual TVerdict doTestStepL();
|
|
167 |
static TPtrC GetTestStepName();
|
|
168 |
|
|
169 |
private:
|
|
170 |
|
|
171 |
}; // class CCTSYIntegrationTestSmsMessaging0007
|
|
172 |
|
|
173 |
|
|
174 |
class CCTSYIntegrationTestSmsMessaging0008 : public CCTSYIntegrationTestSmsMessagingBase
|
|
175 |
{
|
|
176 |
public:
|
|
177 |
|
|
178 |
CCTSYIntegrationTestSmsMessaging0008(CEtelSessionMgr& aEtelSessionMgr);
|
|
179 |
~CCTSYIntegrationTestSmsMessaging0008();
|
|
180 |
virtual TVerdict doTestStepL();
|
|
181 |
static TPtrC GetTestStepName();
|
|
182 |
|
|
183 |
private:
|
|
184 |
|
|
185 |
}; // class CCTSYIntegrationTestSmsMessaging0008
|
|
186 |
|
|
187 |
|
|
188 |
class CCTSYIntegrationTestSmsMessaging0009 : public CCTSYIntegrationTestSmsMessagingBase
|
|
189 |
{
|
|
190 |
public:
|
|
191 |
|
|
192 |
CCTSYIntegrationTestSmsMessaging0009(CEtelSessionMgr& aEtelSessionMgr);
|
|
193 |
~CCTSYIntegrationTestSmsMessaging0009();
|
|
194 |
virtual TVerdict doTestStepL();
|
|
195 |
static TPtrC GetTestStepName();
|
|
196 |
|
|
197 |
private:
|
|
198 |
|
|
199 |
}; // class CCTSYIntegrationTestSmsMessaging0009
|
|
200 |
|
|
201 |
|
|
202 |
class CCTSYIntegrationTestSmsMessaging0010 : public CCTSYIntegrationTestSmsMessagingBase
|
|
203 |
{
|
|
204 |
public:
|
|
205 |
|
|
206 |
CCTSYIntegrationTestSmsMessaging0010(CEtelSessionMgr& aEtelSessionMgr);
|
|
207 |
~CCTSYIntegrationTestSmsMessaging0010();
|
|
208 |
virtual TVerdict doTestStepL();
|
|
209 |
static TPtrC GetTestStepName();
|
|
210 |
|
|
211 |
private:
|
|
212 |
|
|
213 |
}; // class CCTSYIntegrationTestSmsMessaging0010
|
|
214 |
|
|
215 |
|
|
216 |
class CCTSYIntegrationTestSmsMessaging0011 : public CCTSYIntegrationTestSmsMessagingBase
|
|
217 |
{
|
|
218 |
public:
|
|
219 |
|
|
220 |
CCTSYIntegrationTestSmsMessaging0011(CEtelSessionMgr& aEtelSessionMgr);
|
|
221 |
~CCTSYIntegrationTestSmsMessaging0011();
|
|
222 |
virtual TVerdict doTestStepL();
|
|
223 |
static TPtrC GetTestStepName();
|
|
224 |
|
|
225 |
private:
|
|
226 |
|
|
227 |
}; // class CCTSYIntegrationTestSmsMessaging0011
|
|
228 |
|
|
229 |
|
|
230 |
class CCTSYIntegrationTestSmsMessaging0012 : public CCTSYIntegrationTestSmsMessagingBase
|
|
231 |
{
|
|
232 |
public:
|
|
233 |
|
|
234 |
CCTSYIntegrationTestSmsMessaging0012(CEtelSessionMgr& aEtelSessionMgr);
|
|
235 |
~CCTSYIntegrationTestSmsMessaging0012();
|
|
236 |
virtual TVerdict doTestStepL();
|
|
237 |
static TPtrC GetTestStepName();
|
|
238 |
|
|
239 |
private:
|
|
240 |
|
|
241 |
}; // class CCTSYIntegrationTestSmsMessaging0012
|
|
242 |
|
|
243 |
|
|
244 |
class CCTSYIntegrationTestSmsMessaging0013 : public CCTSYIntegrationTestSmsMessagingBase
|
|
245 |
{
|
|
246 |
public:
|
|
247 |
|
|
248 |
CCTSYIntegrationTestSmsMessaging0013(CEtelSessionMgr& aEtelSessionMgr);
|
|
249 |
~CCTSYIntegrationTestSmsMessaging0013();
|
|
250 |
virtual TVerdict doTestStepL();
|
|
251 |
static TPtrC GetTestStepName();
|
|
252 |
|
|
253 |
private:
|
|
254 |
|
|
255 |
}; // class CCTSYIntegrationTestSmsMessaging0013
|
|
256 |
|
|
257 |
|
|
258 |
class CCTSYIntegrationTestSmsMessaging0014 : public CCTSYIntegrationTestSmsMessagingBase
|
|
259 |
{
|
|
260 |
public:
|
|
261 |
|
|
262 |
CCTSYIntegrationTestSmsMessaging0014(CEtelSessionMgr& aEtelSessionMgr);
|
|
263 |
~CCTSYIntegrationTestSmsMessaging0014();
|
|
264 |
virtual TVerdict doTestStepL();
|
|
265 |
static TPtrC GetTestStepName();
|
|
266 |
|
|
267 |
private:
|
|
268 |
|
|
269 |
}; // class CCTSYIntegrationTestSmsMessaging0014
|
|
270 |
|
|
271 |
|
|
272 |
class CCTSYIntegrationTestSmsMessaging0015 : public CCTSYIntegrationTestSmsMessagingBase
|
|
273 |
{
|
|
274 |
public:
|
|
275 |
|
|
276 |
CCTSYIntegrationTestSmsMessaging0015(CEtelSessionMgr& aEtelSessionMgr);
|
|
277 |
~CCTSYIntegrationTestSmsMessaging0015();
|
|
278 |
virtual TVerdict doTestStepL();
|
|
279 |
static TPtrC GetTestStepName();
|
|
280 |
|
|
281 |
private:
|
|
282 |
|
|
283 |
}; // class CCTSYIntegrationTestSmsMessaging0015
|
|
284 |
|
|
285 |
|
|
286 |
class CCTSYIntegrationTestSmsMessaging0016 : public CCTSYIntegrationTestSmsMessagingBase
|
|
287 |
{
|
|
288 |
public:
|
|
289 |
|
|
290 |
CCTSYIntegrationTestSmsMessaging0016(CEtelSessionMgr& aEtelSessionMgr);
|
|
291 |
~CCTSYIntegrationTestSmsMessaging0016();
|
|
292 |
virtual TVerdict doTestStepL();
|
|
293 |
static TPtrC GetTestStepName();
|
|
294 |
|
|
295 |
private:
|
|
296 |
|
|
297 |
}; // class CCTSYIntegrationTestSmsMessaging0016
|
|
298 |
|
|
299 |
|
|
300 |
class CCTSYIntegrationTestSmsMessaging0017 : public CCTSYIntegrationTestSmsMessagingBase
|
|
301 |
{
|
|
302 |
public:
|
|
303 |
|
|
304 |
CCTSYIntegrationTestSmsMessaging0017(CEtelSessionMgr& aEtelSessionMgr);
|
|
305 |
~CCTSYIntegrationTestSmsMessaging0017();
|
|
306 |
virtual TVerdict doTestStepL();
|
|
307 |
static TPtrC GetTestStepName();
|
|
308 |
|
|
309 |
private:
|
|
310 |
|
|
311 |
}; // class CCTSYIntegrationTestSmsMessaging0017
|
|
312 |
|
|
313 |
|
|
314 |
class CCTSYIntegrationTestSmsMessaging0018 : public CCTSYIntegrationTestSmsMessagingBase
|
|
315 |
{
|
|
316 |
public:
|
|
317 |
|
|
318 |
CCTSYIntegrationTestSmsMessaging0018(CEtelSessionMgr& aEtelSessionMgr);
|
|
319 |
~CCTSYIntegrationTestSmsMessaging0018();
|
|
320 |
virtual TVerdict doTestStepL();
|
|
321 |
static TPtrC GetTestStepName();
|
|
322 |
|
|
323 |
private:
|
|
324 |
|
|
325 |
}; // class CCTSYIntegrationTestSmsMessaging0018
|
|
326 |
|
|
327 |
|
|
328 |
class CCTSYIntegrationTestSmsMessaging0019 : public CCTSYIntegrationTestSmsMessagingBase
|
|
329 |
{
|
|
330 |
public:
|
|
331 |
|
|
332 |
CCTSYIntegrationTestSmsMessaging0019(CEtelSessionMgr& aEtelSessionMgr);
|
|
333 |
~CCTSYIntegrationTestSmsMessaging0019();
|
|
334 |
virtual TVerdict doTestStepL();
|
|
335 |
static TPtrC GetTestStepName();
|
|
336 |
|
|
337 |
private:
|
|
338 |
|
|
339 |
}; // class CCTSYIntegrationTestSmsMessaging0019
|
|
340 |
|
|
341 |
|
|
342 |
class CCTSYIntegrationTestSmsMessaging0020 : public CCTSYIntegrationTestSmsMessagingBase
|
|
343 |
{
|
|
344 |
public:
|
|
345 |
|
|
346 |
CCTSYIntegrationTestSmsMessaging0020(CEtelSessionMgr& aEtelSessionMgr);
|
|
347 |
~CCTSYIntegrationTestSmsMessaging0020();
|
|
348 |
virtual TVerdict doTestStepL();
|
|
349 |
static TPtrC GetTestStepName();
|
|
350 |
|
|
351 |
private:
|
|
352 |
|
|
353 |
}; // class CCTSYIntegrationTestSmsMessaging0020
|
|
354 |
|
|
355 |
|
|
356 |
class CCTSYIntegrationTestSmsMessaging0021 : public CCTSYIntegrationTestSmsMessagingBase
|
|
357 |
{
|
|
358 |
public:
|
|
359 |
|
|
360 |
CCTSYIntegrationTestSmsMessaging0021(CEtelSessionMgr& aEtelSessionMgr);
|
|
361 |
~CCTSYIntegrationTestSmsMessaging0021();
|
|
362 |
virtual TVerdict doTestStepL();
|
|
363 |
static TPtrC GetTestStepName();
|
|
364 |
|
|
365 |
private:
|
|
366 |
|
|
367 |
}; // class CCTSYIntegrationTestSmsMessaging0021
|
|
368 |
|
|
369 |
|
|
370 |
class CCTSYIntegrationTestSmsMessaging0022 : public CCTSYIntegrationTestSmsMessagingBase
|
|
371 |
{
|
|
372 |
public:
|
|
373 |
|
|
374 |
CCTSYIntegrationTestSmsMessaging0022(CEtelSessionMgr& aEtelSessionMgr);
|
|
375 |
~CCTSYIntegrationTestSmsMessaging0022();
|
|
376 |
virtual TVerdict doTestStepL();
|
|
377 |
static TPtrC GetTestStepName();
|
|
378 |
|
|
379 |
private:
|
|
380 |
|
|
381 |
}; // class CCTSYIntegrationTestSmsMessaging0022
|
|
382 |
|
|
383 |
|
|
384 |
class CCTSYIntegrationTestSmsMessaging0023 : public CCTSYIntegrationTestSmsMessagingBase
|
|
385 |
{
|
|
386 |
public:
|
|
387 |
|
|
388 |
CCTSYIntegrationTestSmsMessaging0023(CEtelSessionMgr& aEtelSessionMgr);
|
|
389 |
~CCTSYIntegrationTestSmsMessaging0023();
|
|
390 |
virtual TVerdict doTestStepL();
|
|
391 |
static TPtrC GetTestStepName();
|
|
392 |
|
|
393 |
private:
|
|
394 |
|
|
395 |
}; // class CCTSYIntegrationTestSmsMessaging0023
|
|
396 |
|
|
397 |
|
|
398 |
class CCTSYIntegrationTestSmsMessaging0024 : public CCTSYIntegrationTestSmsMessagingBase
|
|
399 |
{
|
|
400 |
public:
|
|
401 |
|
|
402 |
CCTSYIntegrationTestSmsMessaging0024(CEtelSessionMgr& aEtelSessionMgr);
|
|
403 |
~CCTSYIntegrationTestSmsMessaging0024();
|
|
404 |
virtual TVerdict doTestStepL();
|
|
405 |
static TPtrC GetTestStepName();
|
|
406 |
|
|
407 |
private:
|
|
408 |
|
|
409 |
}; // class CCTSYIntegrationTestSmsMessaging0024
|
|
410 |
|
|
411 |
|
|
412 |
class CCTSYIntegrationTestSmsMessaging0025 : public CCTSYIntegrationTestSmsMessagingBase
|
|
413 |
{
|
|
414 |
public:
|
|
415 |
|
|
416 |
CCTSYIntegrationTestSmsMessaging0025(CEtelSessionMgr& aEtelSessionMgr);
|
|
417 |
~CCTSYIntegrationTestSmsMessaging0025();
|
|
418 |
virtual TVerdict doTestStepL();
|
|
419 |
static TPtrC GetTestStepName();
|
|
420 |
|
|
421 |
private:
|
|
422 |
|
|
423 |
}; // class CCTSYIntegrationTestSmsMessaging0025
|
|
424 |
|
|
425 |
|
|
426 |
class CCTSYIntegrationTestSmsMessaging0026 : public CCTSYIntegrationTestSmsMessagingBase
|
|
427 |
{
|
|
428 |
public:
|
|
429 |
|
|
430 |
CCTSYIntegrationTestSmsMessaging0026(CEtelSessionMgr& aEtelSessionMgr);
|
|
431 |
~CCTSYIntegrationTestSmsMessaging0026();
|
|
432 |
virtual TVerdict doTestStepL();
|
|
433 |
static TPtrC GetTestStepName();
|
|
434 |
|
|
435 |
private:
|
|
436 |
|
|
437 |
}; // class CCTSYIntegrationTestSmsMessaging0026
|
|
438 |
|
|
439 |
|
|
440 |
class CCTSYIntegrationTestSmsMessaging0027 : public CCTSYIntegrationTestSmsMessagingBase
|
|
441 |
{
|
|
442 |
public:
|
|
443 |
|
|
444 |
CCTSYIntegrationTestSmsMessaging0027(CEtelSessionMgr& aEtelSessionMgr);
|
|
445 |
~CCTSYIntegrationTestSmsMessaging0027();
|
|
446 |
virtual TVerdict doTestStepL();
|
|
447 |
static TPtrC GetTestStepName();
|
|
448 |
|
|
449 |
private:
|
|
450 |
|
|
451 |
}; // class CCTSYIntegrationTestSmsMessaging0027
|
|
452 |
|
|
453 |
|
|
454 |
class CCTSYIntegrationTestSmsMessaging0028 : public CCTSYIntegrationTestSmsMessagingBase
|
|
455 |
{
|
|
456 |
public:
|
|
457 |
|
|
458 |
CCTSYIntegrationTestSmsMessaging0028(CEtelSessionMgr& aEtelSessionMgr);
|
|
459 |
~CCTSYIntegrationTestSmsMessaging0028();
|
|
460 |
virtual TVerdict doTestStepL();
|
|
461 |
static TPtrC GetTestStepName();
|
|
462 |
|
|
463 |
private:
|
|
464 |
|
|
465 |
}; // class CCTSYIntegrationTestSmsMessaging0028
|
|
466 |
|
|
467 |
|
|
468 |
class CCTSYIntegrationTestSmsMessaging0029 : public CCTSYIntegrationTestSmsMessagingBase
|
|
469 |
{
|
|
470 |
public:
|
|
471 |
|
|
472 |
CCTSYIntegrationTestSmsMessaging0029(CEtelSessionMgr& aEtelSessionMgr);
|
|
473 |
~CCTSYIntegrationTestSmsMessaging0029();
|
|
474 |
virtual TVerdict doTestStepL();
|
|
475 |
static TPtrC GetTestStepName();
|
|
476 |
|
|
477 |
private:
|
|
478 |
|
|
479 |
}; // class CCTSYIntegrationTestSmsMessaging0029
|
|
480 |
|
|
481 |
|
|
482 |
class CCTSYIntegrationTestSmsMessaging0030 : public CCTSYIntegrationTestSmsMessagingBase
|
|
483 |
{
|
|
484 |
public:
|
|
485 |
|
|
486 |
CCTSYIntegrationTestSmsMessaging0030(CEtelSessionMgr& aEtelSessionMgr);
|
|
487 |
~CCTSYIntegrationTestSmsMessaging0030();
|
|
488 |
virtual TVerdict doTestStepL();
|
|
489 |
static TPtrC GetTestStepName();
|
|
490 |
|
|
491 |
private:
|
|
492 |
|
|
493 |
}; // class CCTSYIntegrationTestSmsMessaging0030
|
|
494 |
|
|
495 |
|
|
496 |
class CCTSYIntegrationTestSmsMessaging0031 : public CCTSYIntegrationTestSmsMessagingBase
|
|
497 |
{
|
|
498 |
public:
|
|
499 |
|
|
500 |
CCTSYIntegrationTestSmsMessaging0031(CEtelSessionMgr& aEtelSessionMgr);
|
|
501 |
~CCTSYIntegrationTestSmsMessaging0031();
|
|
502 |
virtual TVerdict doTestStepL();
|
|
503 |
static TPtrC GetTestStepName();
|
|
504 |
|
|
505 |
private:
|
|
506 |
|
|
507 |
}; // class CCTSYIntegrationTestSmsMessaging0031
|
|
508 |
|
|
509 |
|
|
510 |
class CCTSYIntegrationTestSmsMessaging0032 : public CCTSYIntegrationTestSmsMessagingBase
|
|
511 |
{
|
|
512 |
public:
|
|
513 |
|
|
514 |
CCTSYIntegrationTestSmsMessaging0032(CEtelSessionMgr& aEtelSessionMgr);
|
|
515 |
~CCTSYIntegrationTestSmsMessaging0032();
|
|
516 |
virtual TVerdict doTestStepL();
|
|
517 |
static TPtrC GetTestStepName();
|
|
518 |
|
|
519 |
private:
|
|
520 |
|
|
521 |
}; // class CCTSYIntegrationTestSmsMessaging0032
|
|
522 |
|
|
523 |
|
|
524 |
class CCTSYIntegrationTestSmsMessaging0033 : public CCTSYIntegrationTestSmsMessagingBase
|
|
525 |
{
|
|
526 |
public:
|
|
527 |
|
|
528 |
CCTSYIntegrationTestSmsMessaging0033(CEtelSessionMgr& aEtelSessionMgr);
|
|
529 |
~CCTSYIntegrationTestSmsMessaging0033();
|
|
530 |
virtual TVerdict doTestStepL();
|
|
531 |
static TPtrC GetTestStepName();
|
|
532 |
|
|
533 |
private:
|
|
534 |
|
|
535 |
}; // class CCTSYIntegrationTestSmsMessaging0033
|
|
536 |
|
|
537 |
|
|
538 |
class CCTSYIntegrationTestSmsMessaging0034 : public CCTSYIntegrationTestSmsMessagingBase
|
|
539 |
{
|
|
540 |
public:
|
|
541 |
|
|
542 |
CCTSYIntegrationTestSmsMessaging0034(CEtelSessionMgr& aEtelSessionMgr);
|
|
543 |
~CCTSYIntegrationTestSmsMessaging0034();
|
|
544 |
virtual TVerdict doTestStepL();
|
|
545 |
static TPtrC GetTestStepName();
|
|
546 |
|
|
547 |
private:
|
|
548 |
|
|
549 |
}; // class CCTSYIntegrationTestSmsMessaging0034
|
|
550 |
|
|
551 |
|
|
552 |
class CCTSYIntegrationTestSmsMessaging0035 : public CCTSYIntegrationTestSmsMessagingBase
|
|
553 |
{
|
|
554 |
public:
|
|
555 |
|
|
556 |
CCTSYIntegrationTestSmsMessaging0035(CEtelSessionMgr& aEtelSessionMgr);
|
|
557 |
~CCTSYIntegrationTestSmsMessaging0035();
|
|
558 |
virtual TVerdict doTestStepL();
|
|
559 |
static TPtrC GetTestStepName();
|
|
560 |
|
|
561 |
private:
|
|
562 |
|
|
563 |
}; // class CCTSYIntegrationTestSmsMessaging0035
|
|
564 |
|
|
565 |
|
|
566 |
|
|
567 |
#endif // __CCTSYINTEGRATIONTESTSMSMESSAGING_H__
|