equal
deleted
inserted
replaced
|
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 // |
|
15 |
|
16 |
|
17 |
|
18 #include "CTestPOPSecureSocketTest.h" |
|
19 #include <test/ctefunitserver.h> |
|
20 |
|
21 |
|
22 _LIT(KServerName, "t_popsecuresockets"); |
|
23 |
|
24 |
|
25 GLDEF_C const TTestName ServerName() |
|
26 { |
|
27 TTestName serverName(KServerName); |
|
28 return serverName; |
|
29 } |
|
30 |
|
31 GLDEF_C CTestSuite* CreateTestSuiteL() |
|
32 { |
|
33 START_SUITE; |
|
34 ADD_TEST_SUITE(CTestPOPSecureSocketTest); |
|
35 END_SUITE; |
|
36 } |
|
37 |
|
38 GLDEF_C CTestStep* CreateTEFTestStep(const TDesC& /*aStepName*/, CTEFUnitServer& /*aServer*/) |
|
39 { |
|
40 // Initialise test step object to NULL if no TEF steps are assigned |
|
41 CTestStep* testStep = NULL; |
|
42 /* |
|
43 if(aStepName == KSampleStep1) |
|
44 { |
|
45 testStep = new CSampleStep1(aServer); |
|
46 } |
|
47 */ |
|
48 return testStep; |
|
49 } |
|
50 |
|
51 |