24
|
1 |
// Copyright (c) 2001-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 |
// This contains CTestSuiteCsdAgt
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
#if (!defined __TESTSUITCSDAgt_H__)
|
|
19 |
#define __TESTSUITCSDAgt_H__
|
|
20 |
|
|
21 |
#include "testsuite.h"
|
|
22 |
#include <es_sock.h>
|
|
23 |
|
|
24 |
#if defined (__WINS__)
|
|
25 |
#define PDD_NAME _L("ECDRV")
|
|
26 |
#define LDD_NAME _L("ECOMM")
|
|
27 |
#else
|
|
28 |
#define PDD_NAME _L("EUART1")
|
|
29 |
#define LDD_NAME _L("ECOMM")
|
|
30 |
#endif
|
|
31 |
|
|
32 |
class CTestSuiteCsdAgt : public CTestSuite
|
|
33 |
{
|
|
34 |
public:
|
|
35 |
void InitialiseL( void );
|
|
36 |
~CTestSuiteCsdAgt();
|
|
37 |
|
|
38 |
void AddTestStepL( CTestStepCsdAgt * ptrTestStep );
|
|
39 |
|
|
40 |
// this should be a pure virtual so every test ddl
|
|
41 |
// has to provide a version but for now defaults to ?.?
|
|
42 |
virtual TPtrC GetVersion( void );
|
|
43 |
private:
|
|
44 |
};
|
|
45 |
|
|
46 |
|
|
47 |
#endif /* __TESTSUITCSDAGT_H__ */
|