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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 /** |
|
20 @file CTEFUnitServer.h |
|
21 */ |
|
22 |
|
23 #ifndef __TEF_UNIT_SERVER_H__ |
|
24 #define __TEF_UNIT_SERVER_H__ |
|
25 |
|
26 #include <test/testexecuteserverbase.h> |
|
27 #include <test/tefunit.h> |
|
28 const TInt KMinTEFUnitStepNameSize=8; |
|
29 |
|
30 class CTEFUnitServer : public CTestServer |
|
31 { |
|
32 /** |
|
33 @internalComponent |
|
34 @test |
|
35 */ |
|
36 public: |
|
37 virtual ~CTEFUnitServer(); |
|
38 static CTEFUnitServer* NewL(); |
|
39 virtual CTestStep* CreateTestStep(const TDesC& aStepName); |
|
40 RFs& Fs(){return iFs;}; |
|
41 |
|
42 private: |
|
43 RFs iFs; |
|
44 CTestSuite* iSuite; |
|
45 }; |
|
46 |
|
47 #endif // __TEF_UNIT_SERVER_H__ |