os/persistentdata/loggingservices/rfilelogger/Logger/te_RFileLogger/src/Te_RFileLoggerSuiteStepBase.cpp
Update contrib.
1 // Copyright (c) 2004-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_RFileLoggerSuiteStepBase.cpp
20 #include "Te_RFileLoggerSuiteStepBase.h"
21 #include "Te_RFileLoggerSuiteDefs.h"
23 // Device driver constants
25 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPreambleL()
28 * Implementation of CTestStep base class virtual
29 * It is used for doing all initialisation common to derived classes in here.
30 * Make it being able to leave if there are any errors here as there's no point in
31 * trying to run a test step if anything fails.
32 * The leave will be picked up by the framework.
36 SetTestStepResult(EPass);
37 return TestStepResult();
40 TVerdict CTe_RFileLoggerSuiteStepBase::doTestStepPostambleL()
43 * Implementation of CTestStep base class virtual
44 * It is used for doing all after test treatment common to derived classes in here.
45 * Make it being able to leave
46 * The leave will be picked up by the framework.
50 return TestStepResult();
53 CTe_RFileLoggerSuiteStepBase::~CTe_RFileLoggerSuiteStepBase()
57 CTe_RFileLoggerSuiteStepBase::CTe_RFileLoggerSuiteStepBase()