equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * @file CTEFClientUT.h |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __CTEFClientUT_H__ |
|
22 #define __CTEFClientUT_H__ |
|
23 |
|
24 #include "TEFUnit.h" |
|
25 |
|
26 class CTEFClientSuiteUT : public CTestFixture |
|
27 { |
|
28 public: |
|
29 // SetUp and TearDown code |
|
30 virtual void SetupL(); |
|
31 virtual void TearDownL(); |
|
32 |
|
33 // Tests |
|
34 void TestRunTestStepL(); |
|
35 void TestOpenLongStepNameL(); |
|
36 void TestRunLongTestBlockCommandL(); |
|
37 void TestRunLongTestStepCommandL(); |
|
38 void TestLongServerName(); |
|
39 // Create a suite of all the tests |
|
40 static CTestSuite* CreateSuiteL(const TDesC& aName); |
|
41 |
|
42 private: |
|
43 TInt OpenSession(RTestSession &aSession, const TDesC& aName); |
|
44 void ServerConnect(); |
|
45 private: |
|
46 RTestServ iServer; |
|
47 }; |
|
48 |
|
49 #endif // __CTEFClientUT_H__ |