os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/te_sysstartersuitestepbase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file te_sysstartersuitestepbase.cppp
    18  @internalTechnology
    19 */
    20 
    21 #include "te_sysstartersuitestepbase.h"
    22 #include "te_sysstartersuitedefs.h"
    23 
    24 // Device driver constants
    25 
    26 TVerdict CTe_sysstartSuiteStepBase::doTestStepPreambleL()
    27 /**
    28  * @return - TVerdict
    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.
    34  */
    35 	{
    36 	INFO_PRINTF1(_L("installing scheduler"));
    37 	INFO_PRINTF1(_L("Sys Start Unit tests"));
    38 	iScheduler = NULL;
    39 	iScheduler = new(ELeave) CActiveScheduler;
    40 	CActiveScheduler::Install(iScheduler);
    41 
    42 	SetTestStepResult(EPass);
    43 	return TestStepResult();
    44 	}
    45 
    46 TVerdict CTe_sysstartSuiteStepBase::doTestStepPostambleL()
    47 /**
    48  * @return - TVerdict
    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.
    53  */
    54 	{
    55 	//SetTestStepResult(EPass);  // or EFail
    56 	return TestStepResult();
    57 	}
    58 
    59 CTe_sysstartSuiteStepBase::~CTe_sysstartSuiteStepBase()
    60 	{
    61 	INFO_PRINTF1(_L("deleting scheduler"));
    62 	delete iScheduler;
    63 	}
    64 
    65 CTe_sysstartSuiteStepBase::CTe_sysstartSuiteStepBase()
    66 	{
    67 	}
    68