os/persistentdata/loggingservices/rfilelogger/Logger/te_RFileLogger/src/Te_RFileLoggerSuiteStepBase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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  @file Te_RFileLoggerSuiteStepBase.cpp
    18 */
    19 
    20 #include "Te_RFileLoggerSuiteStepBase.h"
    21 #include "Te_RFileLoggerSuiteDefs.h"
    22 
    23 // Device driver constants
    24 
    25 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPreambleL()
    26 /**
    27  * @return - TVerdict
    28  * Implementation of CTestStep base class virtual
    29  * It is used for doing all initialisation common to derived classes in here.
    30  * Make it being able to leave if there are any errors here as there's no point in
    31  * trying to run a test step if anything fails.
    32  * The leave will be picked up by the framework.
    33  */
    34 	{
    35 
    36 	SetTestStepResult(EPass);
    37 	return TestStepResult();
    38 	}
    39 
    40 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPostambleL()
    41 /**
    42  * @return - TVerdict
    43  * Implementation of CTestStep base class virtual
    44  * It is used for doing all after test treatment common to derived classes in here.
    45  * Make it being able to leave
    46  * The leave will be picked up by the framework.
    47  */
    48 	{
    49 
    50 	return TestStepResult();
    51 	}
    52 
    53 CTe_RFileLoggerSuiteStepBase::~CTe_RFileLoggerSuiteStepBase()
    54 	{
    55 	}
    56 
    57 CTe_RFileLoggerSuiteStepBase::CTe_RFileLoggerSuiteStepBase()
    58 	{
    59 	}