os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/uloggersysstarttest.cpp
Update contrib.
1 // Copyright (c) 2007-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 // UloggerFilePluginTest.cpp
18 #include "uloggersysstarttest.h"
19 using namespace Ulogger;
24 * TestStart: Test the start method ???
26 * Expected Verdict: PASS/FAIL/PANIC
30 * Description: Invoke CULoggerSysStarter::Start() and check that the start metod works
33 void CSysStart0Step::TestStart()
35 INFO_PRINTF1(_L("Checking that CSysStart0Step::Start works fine"));
37 INFO_PRINTF1(_L("Writing 'Test' to the log using CULoggerSysStarter::Write()"));
44 CSysStart0Step::~CSysStart0Step()
48 CSysStart0Step::CSysStart0Step()
53 // **MUST** call SetTestStepName in the constructor as the controlling
54 // framework uses the test step name immediately following construction to set
55 // up the step's unique logging ID.
56 SetTestStepName(KSysStart0Step);
59 TVerdict CSysStart0Step::doTestStepPreambleL()
61 CTe_sysstartSuiteStepBase::doTestStepPreambleL();
63 INFO_PRINTF1(_L("Connecting to file server"));
64 SetTestStepResult(EPass);
65 return TestStepResult();
68 TVerdict CSysStart0Step::doTestStepL()
70 * @return - TVerdict code
71 * Override of base class pure virtual
72 * Our implementation only gets called if the base class doTestStepPreambleL() did
73 * not leave. That being the case, the current test result value will be EPass.
76 if (TestStepResult()==EPass)
81 SetTestStepResult(EPass);
84 SetTestStepResult(EFail);
86 INFO_PRINTF1(_L("********"));
87 buf.AppendFormat(_L("%d errors were found!"), iErrors);
89 INFO_PRINTF1(_L("********"));
92 return TestStepResult();
95 TVerdict CSysStart0Step::doTestStepPostambleL()
97 * @return - TVerdict code
98 * Override of base class virtual
101 CTe_sysstartSuiteStepBase::doTestStepPostambleL();
102 SetTestStepResult(EPass);
103 return TestStepResult();