os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/te_sysstartersuitestepbase.cpp
Update contrib.
1 // Copyright (c) 2007-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.
17 @file te_sysstartersuitestepbase.cppp
21 #include "te_sysstartersuitestepbase.h"
22 #include "te_sysstartersuitedefs.h"
24 // Device driver constants
26 TVerdict CTe_sysstartSuiteStepBase::doTestStepPreambleL()
29 * Implementation of CTestStep base class virtual
30 * It is used for doing all initialisation common to derived classes in here.
31 * Make it being able to leave if there are any errors here as there's no point in
32 * trying to run a test step if anything fails.
33 * The leave will be picked up by the framework.
36 INFO_PRINTF1(_L("installing scheduler"));
37 INFO_PRINTF1(_L("Sys Start Unit tests"));
39 iScheduler = new(ELeave) CActiveScheduler;
40 CActiveScheduler::Install(iScheduler);
42 SetTestStepResult(EPass);
43 return TestStepResult();
46 TVerdict CTe_sysstartSuiteStepBase::doTestStepPostambleL()
49 * Implementation of CTestStep base class virtual
50 * It is used for doing all after test treatment common to derived classes in here.
51 * Make it being able to leave
52 * The leave will be picked up by the framework.
55 //SetTestStepResult(EPass); // or EFail
56 return TestStepResult();
59 CTe_sysstartSuiteStepBase::~CTe_sysstartSuiteStepBase()
61 INFO_PRINTF1(_L("deleting scheduler"));
65 CTe_sysstartSuiteStepBase::CTe_sysstartSuiteStepBase()