author | ivan.fildichev@opencode.com |
Thu, 18 Nov 2010 15:42:16 +0200 | |
branch | opencode |
changeset 88 | 5e27cc612ac7 |
parent 32 | 58332560b319 |
permissions | -rw-r--r-- |
24 | 1 |
// Copyright (c) 2008-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. |
|
15 |
// |
|
16 |
||
17 |
||
18 |
||
19 |
/** |
|
20 |
@file The TEFUnit header file which tests the Sms |
|
21 |
*/ |
|
22 |
||
32
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
23 |
/** |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
24 |
@file |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
25 |
@internalAll |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
26 |
*/ |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
27 |
|
24 | 28 |
#ifndef CCTSYSMSFU_H |
29 |
#define CCTSYSMSFU_H |
|
30 |
||
31 |
#include <test/tefunit.h> |
|
32 |
||
33 |
#include <etelmm.h> |
|
34 |
#include <etelmmcs.h> |
|
35 |
||
36 |
#include "cctsycomponenttestbase.h" |
|
37 |
||
38 |
class CCTsySmsFU : public CCtsyComponentTestBase |
|
39 |
{ |
|
40 |
public: |
|
41 |
// Create a suite of all the tests |
|
42 |
static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
43 |
||
44 |
public: |
|
45 |
// use-case tests |
|
46 |
void TestUseCase0001L(); |
|
47 |
void TestUseCase0002L(); |
|
48 |
||
49 |
//other unit tests |
|
50 |
void TestUnit0001L(); |
|
51 |
void TestUnit0002L(); |
|
52 |
void TestUnit0003L(); |
|
53 |
void TestUnit0004L(); |
|
54 |
void TestUnit0005L(); |
|
55 |
void TestUnit0006L(); |
|
56 |
void TestUnit0007L(); |
|
57 |
void TestUnit0008L(); |
|
58 |
void TestUnit0009L(); |
|
59 |
void TestUnit0010L(); |
|
60 |
||
61 |
private: |
|
62 |
||
63 |
}; // class CCTsySmsFU |
|
64 |
||
65 |
#endif // CCTSYSMSFU_H |
|
66 |