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