os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-server/uloggerservertest1step.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /**
     2 * Copyright (c) 2002-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 UloggerServerTest1Step.h
    22  @internalTechnology
    23 */
    24 #if (!defined __ULOGGERSERVERTEST1_STEP_H__)
    25 #define __ULOGGERSERVERTEST1_STEP_H__
    26 #include <test/testexecutestepbase.h>
    27 #include "te_uloggerservertestsuitestepbase.h"
    28 
    29 
    30 class CUloggerServerTest1Step : public CTe_UloggerServerTestSuiteStepBase
    31 	{
    32 public:
    33 	CUloggerServerTest1Step();
    34 	~CUloggerServerTest1Step();
    35 	virtual TVerdict doTestStepPreambleL();
    36 	virtual TVerdict doTestStepL();
    37 	virtual TVerdict doTestStepPostambleL();
    38 
    39 	//test methods
    40 	TInt Test1L();//CULoggerServer::NewLC
    41 	TInt Test2L();//CULoggerServer::IncrementSessions
    42 	TInt Test3L();//CULoggerServer::Stop
    43 	TInt Test4L();//CULoggerServer::GetPrimaryFilters
    44 	TInt Test5L();//CULoggerServer::GetSecondaryFilters
    45 	TInt Test6L();//CULoggerServer::RemovePrimaryFilterfromConfig
    46 	TInt Test6AL();//CULoggerServer::RemoveSecondaryFilterfromConfig
    47 	TInt Test7L();//CULoggerServer::EnablePrimaryFilter
    48 	TInt Test8L();//CULoggerServer::SetSecondaryFilter
    49 	TInt Test9L();//CULoggerServer::Start
    50 	TInt Test10L();//CULoggerServer::AddOutputPlugin
    51 	TInt Test11L();//CULoggerServer::RemoveOutputPlugin
    52 	TInt Test12L();//CULoggerServer::SetActiveOutputMedia
    53 	TInt Test13L();//CULoggerServer::SetOutputPluginSettings
    54 	TInt Test14L();//CULoggerServer::GetActiveOutput
    55 	TInt Test15L();//CULoggerServer::GetInstalledPlugins
    56 	TInt Test16L();//CULoggerServer::GetOutputPluginSettingsL
    57 	TInt Test17L();//CULoggerServer::GetOutputChannelL
    58 	TInt Test18L();//CULoggerServer::SetBufferSizeL
    59 	TInt Test19L();//CULoggerServer::SetDataNotificationSizeL
    60 	TInt Test20L();//CULoggerServer::GetBufferSize
    61 	TInt Test21L();// CULoggerServer::GetDataNotificationSize
    62 	TInt Test22L();//CULoggerServer::SetGlobalSecondaryFilters
    63 	TInt Test23L();//CULoggerServer::ReadBufferL
    64 	TInt Test24L();//CULoggerServer::DataNotification
    65 	TInt Test25L();//CULoggerServer::Set buffer mode
    66 	TInt Test26L();//CULoggerServer::UnconfigureCurrentChannel
    67 	TInt Test27L();//CULoggerServer::DoPostProcessing
    68 	TInt Test28L();//CULoggerServer::RemoveOutputPluginSettingsL
    69 	TInt Test29L();//CULoggerServer::GetInstalledControlPlugins
    70 	TInt Test30L();//CULoggerServer::SetActiveControlMedia + DeActivateControlMedia
    71 	TInt Test31L();//CULoggerServer::ProcessCommandL ver1
    72 	
    73 // Please add/modify your class members here:
    74 private:
    75 	CActiveScheduler *iScheduler;
    76 	TInt iErrors;
    77 	TInt iMediaCount; //this variable will be used as an counter for "mediaX"
    78 	};
    79 
    80 _LIT(KUloggerServerTest1Step,"UloggerServerTest1Step");
    81 
    82 #endif