sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file te_sysstartersuitestepbase.cppp sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #include "te_sysstartersuitestepbase.h" sl@0: #include "te_sysstartersuitedefs.h" sl@0: sl@0: // Device driver constants sl@0: sl@0: TVerdict CTe_sysstartSuiteStepBase::doTestStepPreambleL() sl@0: /** sl@0: * @return - TVerdict sl@0: * Implementation of CTestStep base class virtual sl@0: * It is used for doing all initialisation common to derived classes in here. sl@0: * Make it being able to leave if there are any errors here as there's no point in sl@0: * trying to run a test step if anything fails. sl@0: * The leave will be picked up by the framework. sl@0: */ sl@0: { sl@0: INFO_PRINTF1(_L("installing scheduler")); sl@0: INFO_PRINTF1(_L("Sys Start Unit tests")); sl@0: iScheduler = NULL; sl@0: iScheduler = new(ELeave) CActiveScheduler; sl@0: CActiveScheduler::Install(iScheduler); sl@0: sl@0: SetTestStepResult(EPass); sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TVerdict CTe_sysstartSuiteStepBase::doTestStepPostambleL() sl@0: /** sl@0: * @return - TVerdict sl@0: * Implementation of CTestStep base class virtual sl@0: * It is used for doing all after test treatment common to derived classes in here. sl@0: * Make it being able to leave sl@0: * The leave will be picked up by the framework. sl@0: */ sl@0: { sl@0: //SetTestStepResult(EPass); // or EFail sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: CTe_sysstartSuiteStepBase::~CTe_sysstartSuiteStepBase() sl@0: { sl@0: INFO_PRINTF1(_L("deleting scheduler")); sl@0: delete iScheduler; sl@0: } sl@0: sl@0: CTe_sysstartSuiteStepBase::CTe_sysstartSuiteStepBase() sl@0: { sl@0: } sl@0: