44
|
1 |
//
|
|
2 |
// testltsysmswrite.h
|
|
3 |
//
|
|
4 |
// Copyright (c) Symbian Software Ltd. Your copyright notice. All rights reserved.
|
|
5 |
//
|
|
6 |
|
|
7 |
#ifndef TESTLTSYSMSWRITE_H
|
|
8 |
#define TESTLTSYSMSWRITE_H
|
|
9 |
|
|
10 |
//system include
|
|
11 |
#include <e32std.h>
|
|
12 |
#include <e32base.h>
|
|
13 |
|
|
14 |
//user include
|
|
15 |
#include "testltsysmsbase.h"
|
|
16 |
#include "testltsymodel.h"
|
|
17 |
// CLASS DECLARATION
|
|
18 |
|
|
19 |
/**
|
|
20 |
* CTestLtsySmsWrite
|
|
21 |
*
|
|
22 |
*/
|
|
23 |
class CTestLtsySmsWrite : public CTestLtsySmsBase
|
|
24 |
{
|
|
25 |
public:
|
|
26 |
|
|
27 |
~CTestLtsySmsWrite();
|
|
28 |
static CTestLtsySmsWrite* NewL(CTestLtsyModel& aTestModel);
|
|
29 |
static CTestLtsySmsWrite* NewLC(CTestLtsyModel& aTestModel);
|
|
30 |
CTestLtsySmsWrite(CTestLtsyModel& aTestModel);
|
|
31 |
void ConstructL();
|
|
32 |
protected:
|
|
33 |
virtual TVerdict doTestStepPreambleL();
|
|
34 |
virtual TVerdict doTestStepL();
|
|
35 |
virtual TVerdict doTestStepPostambleL();
|
|
36 |
void WriteSmsL();
|
|
37 |
private:
|
|
38 |
|
|
39 |
void FillWriteSmsAttibutesL(TBuf8<400> aTpdu,RMobilePhone::TMobileAddress aMsgSca);
|
|
40 |
}; // class CTestLtsySmsWrite
|
|
41 |
_LIT(KCTestLtsySmsWrite,"CTestLtsySmsWrite");
|
|
42 |
|
|
43 |
#endif // TESTLTSYSMSWRITE_H
|