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 |
|
|
23 |
#ifndef CCTSYSMSFU_H
|
|
24 |
#define CCTSYSMSFU_H
|
|
25 |
|
|
26 |
#include <test/tefunit.h>
|
|
27 |
|
|
28 |
#include <etelmm.h>
|
|
29 |
#include <etelmmcs.h>
|
|
30 |
|
|
31 |
#include "cctsycomponenttestbase.h"
|
|
32 |
|
|
33 |
class CCTsySmsFU : public CCtsyComponentTestBase
|
|
34 |
{
|
|
35 |
public:
|
|
36 |
// Create a suite of all the tests
|
|
37 |
static CTestSuite* CreateSuiteL(const TDesC& aName);
|
|
38 |
|
|
39 |
public:
|
|
40 |
// use-case tests
|
|
41 |
void TestUseCase0001L();
|
|
42 |
void TestUseCase0002L();
|
|
43 |
|
|
44 |
//other unit tests
|
|
45 |
void TestUnit0001L();
|
|
46 |
void TestUnit0002L();
|
|
47 |
void TestUnit0003L();
|
|
48 |
void TestUnit0004L();
|
|
49 |
void TestUnit0005L();
|
|
50 |
void TestUnit0006L();
|
|
51 |
void TestUnit0007L();
|
|
52 |
void TestUnit0008L();
|
|
53 |
void TestUnit0009L();
|
|
54 |
void TestUnit0010L();
|
|
55 |
|
|
56 |
private:
|
|
57 |
|
|
58 |
}; // class CCTsySmsFU
|
|
59 |
|
|
60 |
#endif // CCTSYSMSFU_H
|
|
61 |
|