os/ossrv/genericservices/taskscheduler/Test/Testexecute/src/Te_floating_scheduleSuiteStepBase.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Te_floatingSuiteStepBase.cpp
18 #include "Te_floating_scheduleSuiteStepBase.h"
19 #include "Te_floating_scheduleSuiteDefs.h"
21 // Device driver constants
23 TVerdict CTe_floating_scheduleSuiteStepBase::doTestStepPreambleL()
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.
33 SetTestStepResult(EPass);
34 return TestStepResult();
37 TVerdict CTe_floating_scheduleSuiteStepBase::doTestStepPostambleL()
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.
46 SetTestStepResult(EPass);
47 return TestStepResult();
50 CTe_floating_scheduleSuiteStepBase::~CTe_floating_scheduleSuiteStepBase()
54 CTe_floating_scheduleSuiteStepBase::CTe_floating_scheduleSuiteStepBase()