traceservices/tracefw/ulogger/unit_test/te-client/te_uloggerclientsuitestepbase.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 /**
       
     2 * Copyright (c) 2004-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_uloggerclientSuiteStepBase.h
       
    22  @internalTechnology
       
    23 */
       
    24 
       
    25 #if (!defined __TE_ULOGGERCLIENT_STEP_BASE__)
       
    26 #define __TE_ULOGGERCLIENT_STEP_BASE__
       
    27 #include <testexecutestepbase.h>
       
    28 
       
    29 #include "uloggerclient.h"
       
    30 
       
    31 #define KPrimaryFlt 	5
       
    32 #define KSecondaryFlt   0x1024FFFF
       
    33 
       
    34 /****************************************************************************
       
    35 * The reason to have a new step base is that it is very much possible
       
    36 * that the all individual test steps have project related common variables 
       
    37 * and members 
       
    38 * and this is the place to define these common variable and members.
       
    39 * 
       
    40 ****************************************************************************/
       
    41 class CTestUloggerClientApiStepBase : public CTestStep
       
    42 	{
       
    43 public:
       
    44 	virtual ~CTestUloggerClientApiStepBase();
       
    45 	CTestUloggerClientApiStepBase();
       
    46 	virtual TVerdict doTestStepPreambleL(); 
       
    47 	virtual TVerdict doTestStepPostambleL();
       
    48 	virtual TVerdict prepareForStartTestL();
       
    49 	virtual TVerdict prepareForStopTestL();
       
    50 
       
    51 //Please add your class members which will be common to all individual test steps:
       
    52 protected:
       
    53 	HBufC8*		iReadData;
       
    54 	HBufC8*		iWriteData;
       
    55 	Ulogger::RULogger* iSession;
       
    56 	};
       
    57 
       
    58 #endif