equal
deleted
inserted
replaced
|
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 // @file |
|
15 // |
|
16 // |
|
17 |
|
18 |
|
19 #include <test/ctefunitserver.h> |
|
20 #include "cwsgcecsc.h" |
|
21 |
|
22 _LIT( KServerName, "wsgcecscserver" ); |
|
23 |
|
24 GLDEF_C const TTestName ServerName() |
|
25 /** |
|
26 * ServerName |
|
27 * |
|
28 * @return - The TEF server name |
|
29 */ |
|
30 { |
|
31 TTestName serverName(KServerName); |
|
32 return serverName; |
|
33 } |
|
34 |
|
35 |
|
36 GLDEF_C CTestSuite* CreateTestSuiteL() |
|
37 /** |
|
38 * Create the overall test suite. |
|
39 * |
|
40 * @return - The top level suite |
|
41 */ |
|
42 { |
|
43 START_SUITE; |
|
44 ADD_TEST_SUITE(CWSGceCsc); |
|
45 END_SUITE; |
|
46 } |
|
47 |
|
48 |
|
49 GLDEF_C CTestStep* CreateTEFTestStep(const TDesC& /*aStepName*/, CTEFUnitServer& /* aServer */) |
|
50 /** |
|
51 * Create individual test steps, outside the suite. |
|
52 */ |
|
53 { |
|
54 // Initialise test step object to NULL if no TEF step is found |
|
55 CTestStep* testStep = NULL; |
|
56 |
|
57 |
|
58 |
|
59 return testStep; |
|
60 } |
|
61 |