os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testsetoutputpluginsettingsstep.cpp
Update contrib.
1 // Copyright (c) 2005-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.
14 // Example CTestStep derived implementation
19 @file TestSetOutputPluginSettingsStep.cpp
22 #include "testsetoutputpluginsettingsstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestSetOutputPluginSettingsStep::~CTestSetOutputPluginSettingsStep()
32 CTestSetOutputPluginSettingsStep::CTestSetOutputPluginSettingsStep()
37 // **MUST** call SetTestStepName in the constructor as the controlling
38 // framework uses the test step name immediately following construction to set
39 // up the step's unique logging ID.
40 SetTestStepName(KTestSetOutputPluginSettingsStep);
43 TVerdict CTestSetOutputPluginSettingsStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 INFO_PRINTF1(_L("TestSetOutputPluginSettingsStep started"));
50 return TestStepResult();
54 TVerdict CTestSetOutputPluginSettingsStep::doTestStepL()
56 * @return - TVerdict code
57 * Override of base class pure virtual
58 * Our implementation only gets called if the base class doTestStepPreambleL() did
59 * not leave. That being the case, the current test result value will be EPass.
62 if (TestStepResult()==EPass)
64 SetTestStepResult(EPass);
66 return TestStepResult();
71 TVerdict CTestSetOutputPluginSettingsStep::doTestStepPostambleL()
73 * @return - TVerdict code
74 * Override of base class virtual
77 INFO_PRINTF1(_L("TestSetOutputPluginSettingsStep completed"));
78 return TestStepResult();