sl@0: // Copyright (c) 2007-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: // UloggerFilePluginTest.cpp sl@0: // sl@0: // sl@0: sl@0: #include "uloggersysstarttest.h" sl@0: using namespace Ulogger; sl@0: sl@0: sl@0: sl@0: /* sl@0: * TestStart: Test the start method ??? sl@0: * sl@0: * Expected Verdict: PASS/FAIL/PANIC sl@0: * sl@0: * Prerequisites: sl@0: * sl@0: * Description: Invoke CULoggerSysStarter::Start() and check that the start metod works sl@0: * sl@0: */ sl@0: void CSysStart0Step::TestStart() sl@0: { sl@0: INFO_PRINTF1(_L("Checking that CSysStart0Step::Start works fine")); sl@0: sl@0: INFO_PRINTF1(_L("Writing 'Test' to the log using CULoggerSysStarter::Write()")); sl@0: Ulogger::SysStart(); sl@0: sl@0: } sl@0: sl@0: sl@0: sl@0: CSysStart0Step::~CSysStart0Step() sl@0: { sl@0: } sl@0: sl@0: CSysStart0Step::CSysStart0Step() 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(KSysStart0Step); sl@0: } sl@0: sl@0: TVerdict CSysStart0Step::doTestStepPreambleL() sl@0: { sl@0: CTe_sysstartSuiteStepBase::doTestStepPreambleL(); sl@0: sl@0: INFO_PRINTF1(_L("Connecting to file server")); sl@0: SetTestStepResult(EPass); sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TVerdict CSysStart0Step::doTestStepL() sl@0: /** sl@0: * @return - TVerdict code sl@0: * Override of base class pure virtual sl@0: * Our implementation only gets called if the base class doTestStepPreambleL() did sl@0: * not leave. That being the case, the current test result value will be EPass. sl@0: */ sl@0: { sl@0: if (TestStepResult()==EPass) sl@0: { sl@0: TestStart(); sl@0: sl@0: if(iErrors == 0) sl@0: SetTestStepResult(EPass); sl@0: else sl@0: { sl@0: SetTestStepResult(EFail); sl@0: TBuf<64> buf; sl@0: INFO_PRINTF1(_L("********")); sl@0: buf.AppendFormat(_L("%d errors were found!"), iErrors); sl@0: INFO_PRINTF1(buf); sl@0: INFO_PRINTF1(_L("********")); sl@0: } sl@0: } sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TVerdict CSysStart0Step::doTestStepPostambleL() sl@0: /** sl@0: * @return - TVerdict code sl@0: * Override of base class virtual sl@0: */ sl@0: { sl@0: CTe_sysstartSuiteStepBase::doTestStepPostambleL(); sl@0: SetTestStepResult(EPass); sl@0: return TestStepResult(); sl@0: }