sl@0: // Copyright (c) 2006-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_createconfigemptystep.cpp sl@0: */ sl@0: sl@0: #include "te_createconfigemptystep.h" sl@0: #include "te_clearconfig.h" sl@0: sl@0: using namespace Ulogger; sl@0: sl@0: CCreateConfigEmptyTestStep::~CCreateConfigEmptyTestStep() sl@0: /** sl@0: * Destructor sl@0: */ sl@0: { sl@0: } sl@0: sl@0: CCreateConfigEmptyTestStep::CCreateConfigEmptyTestStep() sl@0: /** sl@0: * Constructor sl@0: */ sl@0: { sl@0: // **MUST** call SetTestStepName in the constructor as the controlling sl@0: // framework uses the test step name immediately following construction to set sl@0: // up the step's unique logging ID. sl@0: SetTestStepName(KCreateConfigEmptyStep); sl@0: } sl@0: sl@0: sl@0: /** sl@0: * Override of base class virtual sl@0: * @return - TVerdict code sl@0: * sl@0: */ sl@0: TVerdict CCreateConfigEmptyTestStep::doTestStepPreambleL() sl@0: { sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: * Override of base class virtual sl@0: * @return - TVerdict code sl@0: */ sl@0: TVerdict CCreateConfigEmptyTestStep::doTestStepPostambleL() sl@0: { sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: * Test sl@0: * @return - TVerdict code sl@0: */ sl@0: sl@0: TVerdict CCreateConfigEmptyTestStep::doTestStepL() sl@0: { sl@0: sl@0: sl@0: RULogger logger; sl@0: sl@0: logger.Connect(); sl@0: CClearConfig configIni; sl@0: sl@0: configIni.ClearL(logger); sl@0: sl@0: logger.SetSecondaryFilteringEnabled(EFalse); sl@0: sl@0: SetTestStepResult(EPass); sl@0: sl@0: return TestStepResult(); sl@0: sl@0: }