os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 * UloggerFilePluginTest.h
    16 * 
    17 *
    18 */
    19 
    20 
    21 
    22 #ifndef __ULOGGERSERIALPLUGINTEST_H__
    23 #define __ULOGGERSERIALPLUGINTEST_H__
    24 
    25 #include <test/tefunit.h>
    26 
    27 #include "uloggerserialplugin.h"
    28 #include "te_serialsuitestepbase.h"
    29 	
    30 class CSerial0Step : public CTe_serialSuiteStepBase
    31 	{
    32 public:
    33 	CSerial0Step();
    34 	~CSerial0Step();
    35 	virtual TVerdict doTestStepL();
    36 	virtual TVerdict doTestStepPostambleL();
    37 	virtual TVerdict doTestStepPreambleL(); 
    38 	
    39 private:
    40 	// Tests
    41 	void TestNewL();
    42 	void TestUnlockResourcesL(); 
    43 	void TestSettingsL();
    44 	void TestWriteL(); 
    45 	RFs iFileServer;
    46 	};
    47 
    48 _LIT(KSerial0Step,"serial0Step");
    49 
    50 #endif // __ULOGGERSERIALPLUGINTEST_H__