sl@0: // Copyright (c) 2005-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_UloggerServerTestSuiteStepBase.cpp sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #include "te_uloggerservertestsuitestepbase.h" sl@0: #include "te_uloggerservertestsuitedefs.h" sl@0: sl@0: // Device driver constants sl@0: sl@0: TVerdict CTe_UloggerServerTestSuiteStepBase::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: sl@0: // process some common pre setting to test steps then set SetTestStepResult to EFail or Epass. sl@0: INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPreambleL() of the class CTe_UloggerServerTestSuiteStepBase!")); sl@0: SetTestStepResult(EPass); sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TVerdict CTe_UloggerServerTestSuiteStepBase::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: sl@0: // process some common post setting to test steps then set SetTestStepResult to EFail or Epass. sl@0: INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPostambleL() of the class CTe_UloggerServerTestSuiteStepBase!")); sl@0: //SetTestStepResult(EPass); // or EFail sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: CTe_UloggerServerTestSuiteStepBase::~CTe_UloggerServerTestSuiteStepBase() sl@0: { sl@0: } sl@0: sl@0: CTe_UloggerServerTestSuiteStepBase::CTe_UloggerServerTestSuiteStepBase() sl@0: { sl@0: }