traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_common/inc/te_ostv2integsuite_defs.h
changeset 0 08ec8eefde2f
child 29 cce6680bbf1c
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 // Copyright (c) 2007-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 // This file define all the common values thoughout your test project
       
    15 //
       
    16 
       
    17 
       
    18 
       
    19 /**
       
    20  @file te_uloggerostv2integsuite_defs.h
       
    21  @internalTechnology
       
    22 */
       
    23 #if (!defined TE_ULOGGER_MCL_SUITEDEFS_H)
       
    24 #define TE_ULOGGER_MCL_SUITEDEFS_H
       
    25 
       
    26 #include <uloggerclient.h>
       
    27 //C.A. previously:using namespace UTF;
       
    28 using namespace Ulogger; //CA:added so can use old ulogger api
       
    29 class CClearConfig : public CBase
       
    30 {
       
    31 public:
       
    32 	~CClearConfig();
       
    33 	CClearConfig();
       
    34 	void Clear(RULogger& loggerSession);
       
    35 	void Default(RULogger& loggerSession);
       
    36 //private:
       
    37 	
       
    38 };
       
    39 
       
    40 // Please modify below value with your project and must match with your configuration ini file which is required to be modified as well
       
    41 _LIT(KTe_ULoggerSuiteString,"TheString");
       
    42 _LIT(KTe_ULoggerSuiteInt,"TheInt");
       
    43 _LIT(KTe_ULoggerSuiteBool,"TheBool");
       
    44 
       
    45 // For test step panics
       
    46 _LIT(KTe_ULoggerSuitePanic,"Te_ULoggerMCLSuite");
       
    47 
       
    48 //For CSV stuff for the API call tests
       
    49 _LIT8(KApiCallHeader, "Api Name, Api Id, Api Size, Size Of EVP Data, Context Id, Pc, Runtime Classification Filtering Enabled, Runtime ModuleUid Filtering Enabled, Classification Filter Matches Trace Point, ModuleUid Filter Matches Trace Point, Trace Compiled In, Minimum Execution Time, Typical Execution Time, Api Stack Usage, Api Heap Usage,");
       
    50 _LIT(KApiCSVFile,"c:\\te_apitestresults.csv");
       
    51 _LIT(KReferenceCsvFile, "z:\\testdata\\referencedata\\ost_baseline_h6.csv");
       
    52 //_LIT(KReferenceCsvFile, "z:\\testdata\\referencedata\\ost_baseline_h4.csv");
       
    53 _LIT(KReferenceWinscwCsvFile, "z:\\testdata\\referencedata\\ost_baseline_winscw.csv");
       
    54 _LIT8(KCsvComma, ",");
       
    55 _LIT8(KCsvNewLine, "\n"); 
       
    56 
       
    57 
       
    58 #ifndef __KERNEL_MODE__
       
    59 _LIT16(KName16,"A _LIT16 string with integer parameter %i !");
       
    60 #endif
       
    61 _LIT8(KName8,"A _LIT8 string with integer parameter %i !");
       
    62 
       
    63 _LIT16(KAny16,"Something");
       
    64 
       
    65 #endif