sl@0: // Copyright (c) 2004-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_RFileLoggerSuiteStepBase.cpp sl@0: */ sl@0: sl@0: #include "Te_RFileLoggerSuiteStepBase.h" sl@0: #include "Te_RFileLoggerSuiteDefs.h" sl@0: sl@0: // Device driver constants sl@0: sl@0: TVerdict CTe_RFileLoggerSuiteStepBase::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: SetTestStepResult(EPass); sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TVerdict CTe_RFileLoggerSuiteStepBase::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: return TestStepResult(); sl@0: } sl@0: sl@0: CTe_RFileLoggerSuiteStepBase::~CTe_RFileLoggerSuiteStepBase() sl@0: { sl@0: } sl@0: sl@0: CTe_RFileLoggerSuiteStepBase::CTe_RFileLoggerSuiteStepBase() sl@0: { sl@0: }