dbgsrv/coredumpserver/test/automatictests/tcds_app/src/tcoredumpserversuitestepbase.cpp
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 // Copyright (c) 2005-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_coredumpserverSuiteStepBase.cpp
       
    20  @internalTechnology
       
    21 */
       
    22 
       
    23 #include "tcoredumpserversuitestepbase.h"
       
    24 #include "tcoredumpserversuitedefs.h"
       
    25 
       
    26 // Device driver constants
       
    27 
       
    28 TVerdict CTe_coredumpserverSuiteStepBase::doTestStepPreambleL()
       
    29 /**
       
    30  * @return - TVerdict
       
    31  * Implementation of CTestStep base class virtual
       
    32  * It is used for doing all initialisation common to derived classes in here.
       
    33  * Make it being able to leave if there are any errors here as there's no point in
       
    34  * trying to run a test step if anything fails.
       
    35  * The leave will be picked up by the framework.
       
    36  */
       
    37 	{
       
    38 
       
    39 	// process some common pre setting to test steps then set SetTestStepResult to EFail or Epass.
       
    40 	INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPreambleL() of the class CTe_coredumpserverSuiteStepBase!"));
       
    41 	SetTestStepResult(EPass);
       
    42 	return TestStepResult();
       
    43 	}
       
    44 
       
    45 TVerdict CTe_coredumpserverSuiteStepBase::doTestStepPostambleL()
       
    46 /**
       
    47  * @return - TVerdict
       
    48  * Implementation of CTestStep base class virtual
       
    49  * It is used for doing all after test treatment common to derived classes in here.
       
    50  * Make it being able to leave
       
    51  * The leave will be picked up by the framework.
       
    52  */
       
    53 	{
       
    54 
       
    55 	// process some common post setting to test steps then set SetTestStepResult to EFail or Epass.
       
    56 	INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPostambleL() of the class CTe_coredumpserverSuiteStepBase!"));
       
    57 	//SetTestStepResult(EPass);  // or EFail
       
    58 	return TestStepResult();
       
    59 	}
       
    60 
       
    61 CTe_coredumpserverSuiteStepBase::~CTe_coredumpserverSuiteStepBase()
       
    62 	{
       
    63 	}
       
    64 
       
    65 CTe_coredumpserverSuiteStepBase::CTe_coredumpserverSuiteStepBase()
       
    66 	{
       
    67 	}
       
    68 
       
    69