|
1 // Copyright (c) 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 // functional unit of the Common TSY Dispatcher for all situations |
|
15 // in which a IPC is not supported. |
|
16 // |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file The TEFUnit header file which tests the Sms |
|
22 */ |
|
23 |
|
24 /** |
|
25 @file |
|
26 @internalAll |
|
27 */ |
|
28 |
|
29 #ifndef CCTSYSMSFUNEGATIVE_H__ |
|
30 #define CCTSYSMSFUNEGATIVE_H__ |
|
31 |
|
32 #include "cctsycomponenttestbase.h" |
|
33 |
|
34 class CCTsySmsFUNegative : public CCtsyComponentTestBase |
|
35 { |
|
36 public: |
|
37 // Create a suite of all the tests |
|
38 static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
39 |
|
40 public: |
|
41 void TestNackSmsStoredL(); |
|
42 void TestAckSmsStoredL(); |
|
43 void TestSendMessageL(); |
|
44 void TestGetSmsStoreInfoL(); |
|
45 void TestGetSmspListL(); |
|
46 void TestSendMessageNoFdnCheckL(); |
|
47 void TestResumeSmsReceptionL(); |
|
48 |
|
49 void TestStoreSmspListEntryL(); |
|
50 }; // class CCTsySmsFUNegative |
|
51 |
|
52 #endif // CCTSYSMSFUNEGATIVE_H__ |
|
53 |