diff -r 14460bf2a402 -r f50f4094acd7 cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsysmssend.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsysmssend.h Tue Jul 06 15:36:38 2010 +0300 @@ -0,0 +1,44 @@ +// +// testltsysmssend.h +// +// Copyright (c) Symbian Software Ltd. Your copyright notice. All rights reserved. +// + +#ifndef TESTLTSYSMSSEND_H +#define TESTLTSYSMSSEND_H + +//system include +#include +#include + +//user include +#include "testltsysmsbase.h" +#include "testltsymodel.h" +// CLASS DECLARATION + +/** + * CTestLtsySmsSend + * + */ +class CTestLtsySmsSend : public CTestLtsySmsBase + { +public: + + ~CTestLtsySmsSend(); + static CTestLtsySmsSend* NewL(CTestLtsyModel& aTestModel); + static CTestLtsySmsSend* NewLC(CTestLtsyModel& aTestModel); + CTestLtsySmsSend(CTestLtsyModel& aTestModel); + void ConstructL(); +protected: + virtual TVerdict doTestStepPreambleL(); + virtual TVerdict doTestStepL(); + virtual TVerdict doTestStepPostambleL(); + void SendSmsL(); + void FillSmsAttibutes(const TDesC& aTelNumber); +private: + RMobileSmsMessaging::TMobileSmsSendAttributesV1 iSmsAttr; + + }; // class CTestLtsySmsSend +_LIT(KCTestLtsySmsSend,"CTestLtsySmsSend"); + +#endif // TESTLTSYSMSSEND_H