44
|
1 |
//
|
|
2 |
// testltsygetmessagestoreinfo.h
|
|
3 |
//
|
|
4 |
// Copyright (c) Symbian Software Ltd. Your copyright notice. All rights reserved.
|
|
5 |
//
|
|
6 |
|
|
7 |
#ifndef TESTLTSYSMSSTOREGETINFO_H
|
|
8 |
#define TESTLTSYSMSSTOREGETINFO_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 |
* CTestLtsySmsStoreGetInfo
|
|
21 |
*
|
|
22 |
*/
|
|
23 |
class CTestLtsySmsStoreGetInfo : public CTestLtsySmsBase
|
|
24 |
{
|
|
25 |
public:
|
|
26 |
|
|
27 |
~CTestLtsySmsStoreGetInfo();
|
|
28 |
static CTestLtsySmsStoreGetInfo* NewL(CTestLtsyModel& aTestModel);
|
|
29 |
static CTestLtsySmsStoreGetInfo* NewLC(CTestLtsyModel& aTestModel);
|
|
30 |
CTestLtsySmsStoreGetInfo(CTestLtsyModel& aTestModel);
|
|
31 |
void ConstructL();
|
|
32 |
protected:
|
|
33 |
virtual TVerdict doTestStepPreambleL();
|
|
34 |
virtual TVerdict doTestStepL();
|
|
35 |
virtual TVerdict doTestStepPostambleL();
|
|
36 |
void GetSmsStoreInfoL();
|
|
37 |
void CheckSmsStoreInfoL();
|
|
38 |
private:
|
|
39 |
RMobilePhoneBookStore::TMobilePhoneBookInfoV1 iInfo;
|
|
40 |
}; // class CTestLtsySmsStoreGetInfo
|
|
41 |
_LIT(KCTestLtsySmsStoreGetInfo,"CTestLtsySmsStoreGetInfo");
|
|
42 |
|
|
43 |
#endif // TESTLTSYSMSSTOREGETINFO_H
|