testexecfw/stf/stfext/testmodules/teftestmod/testexecmdw/filelogger/te_rfilelogger/src/te_rfileloggersuitestepbase.cpp
changeset 2 8bb370ba6d1d
equal deleted inserted replaced
1:bbd31066657e 2:8bb370ba6d1d
       
     1 /*
       
     2 * Copyright (c) 2005-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 Te_RFileLoggerSuiteStepBase.cpp
       
    22 */
       
    23 
       
    24 #include "te_rfileloggersuitestepbase.h"
       
    25 #include "te_rfileloggersuitedefs.h"
       
    26 
       
    27 // Device driver constants
       
    28 
       
    29 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPreambleL()
       
    30 /**
       
    31  * @return - TVerdict
       
    32  * Implementation of CTestStep base class virtual
       
    33  * It is used for doing all initialisation common to derived classes in here.
       
    34  * Make it being able to leave if there are any errors here as there's no point in
       
    35  * trying to run a test step if anything fails.
       
    36  * The leave will be picked up by the framework.
       
    37  */
       
    38 	{
       
    39 
       
    40 	SetTestStepResult(EPass);
       
    41 	return TestStepResult();
       
    42 	}
       
    43 
       
    44 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPostambleL()
       
    45 /**
       
    46  * @return - TVerdict
       
    47  * Implementation of CTestStep base class virtual
       
    48  * It is used for doing all after test treatment common to derived classes in here.
       
    49  * Make it being able to leave
       
    50  * The leave will be picked up by the framework.
       
    51  */
       
    52 	{
       
    53 
       
    54 	return TestStepResult();
       
    55 	}
       
    56 
       
    57 CTe_RFileLoggerSuiteStepBase::~CTe_RFileLoggerSuiteStepBase()
       
    58 	{
       
    59 	}
       
    60 
       
    61 CTe_RFileLoggerSuiteStepBase::CTe_RFileLoggerSuiteStepBase()
       
    62 	{
       
    63 	}