traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-file/te_filesuitestepbase.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 /**
       
     2 * Copyright (c) 2007-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_filesuitestepbase.h
       
    22  @internalTechnology
       
    23 */
       
    24 
       
    25 #if (!defined __TE_FILE_STEP_BASE__)
       
    26 #define __TE_FILE_STEP_BASE__
       
    27 #include <testexecutestepbase.h>
       
    28 #include <uloggerclient.h>
       
    29 using namespace Ulogger;
       
    30 
       
    31 // Please add your include here if you have 
       
    32 
       
    33 /****************************************************************************
       
    34 * The reason to have a new step base is that it is very much possible
       
    35 * that the all individual test steps have project related common variables 
       
    36 * and members 
       
    37 * and this is the place to define these common variable and members.
       
    38 * 
       
    39 ****************************************************************************/
       
    40 class CTe_fileSuiteStepBase : public CTestStep
       
    41 	{
       
    42 public:
       
    43 	virtual ~CTe_fileSuiteStepBase();
       
    44 	CTe_fileSuiteStepBase();
       
    45 	virtual TVerdict doTestStepPreambleL(); 
       
    46 	virtual TVerdict doTestStepPostambleL();
       
    47 	
       
    48 	
       
    49 //Please add your class members which will be common to all individual test steps:
       
    50 protected:
       
    51 	TInt iErrors;
       
    52 
       
    53 private:
       
    54 	CActiveScheduler* iScheduler;
       
    55 	};
       
    56 
       
    57 #endif