traceservices/tracefw/ost_trace_api/unit_test/te_ost/inc/te_check_record_content_step.h
changeset 0 08ec8eefde2f
child 23 26645d81f48d
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 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  @file te_check_record_content_step.h
       
    20  @internalTechnology
       
    21 */
       
    22 
       
    23 #ifndef TE_CHECK_RECORD_CONTENT_STEP_H_
       
    24 #define TE_CHECK_RECORD_CONTENT_STEP_H_
       
    25 #include <TestExecuteStepBase.h>
       
    26 #include "te_suite_step_base.h"
       
    27 #include "te_parser.h"
       
    28 
       
    29 
       
    30 class CCheckRecordContentStep : public CTe_UTraceSuiteStepBase
       
    31 	{
       
    32 public:
       
    33 	CCheckRecordContentStep();
       
    34 	~CCheckRecordContentStep();
       
    35 	virtual TVerdict doTestStepPreambleL();
       
    36 	virtual TVerdict doTestStepL();
       
    37 //	virtual TVerdict doTestStepPostambleL();
       
    38 private:
       
    39 	TInt CompareTraces();
       
    40 	TInt WriteTraces();
       
    41 	TInt ReadTraces();
       
    42 	TTraceConfigs* CreateTrace(TTraceApiUsed aApi);
       
    43 	TTraceParser	iParser;
       
    44 	
       
    45 	RPointerArray<TTraceConfigs> iLoggedTraces;
       
    46 	RPointerArray<TTraceConfigs> iSentTraces;
       
    47 	};
       
    48 
       
    49 _LIT(KCheckRecordContentStep,"CCheckRecordContentStep");
       
    50 
       
    51 #endif /*TE_CHECK_RECORD_CONTENT_STEP_H_*/