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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file Te_RFileLoggerSuiteStepBase.h |
|
22 */ |
|
23 |
|
24 #if (!defined __TE_RFILELOGGER_STEP_BASE__) |
|
25 #define __TE_RFILELOGGER_STEP_BASE__ |
|
26 #include <TestExecuteStepBase.h> |
|
27 #include <RFileLogger.h> |
|
28 // Please add your include here if you have |
|
29 |
|
30 /**************************************************************************** |
|
31 * The reason to have a new step base is that it is very much possible |
|
32 * that the all individual test steps have project related common variables |
|
33 * and members |
|
34 * and this is the place to define these common variable and members. |
|
35 * |
|
36 ****************************************************************************/ |
|
37 class CTe_RFileLoggerSuiteStepBase : public CTestStep |
|
38 { |
|
39 public: |
|
40 virtual ~CTe_RFileLoggerSuiteStepBase(); |
|
41 CTe_RFileLoggerSuiteStepBase(); |
|
42 virtual TVerdict doTestStepPreambleL(); |
|
43 virtual TVerdict doTestStepPostambleL(); |
|
44 |
|
45 //Please add your class members which will be common to all individual test steps: |
|
46 protected: |
|
47 }; |
|
48 |
|
49 #endif |