os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testversionstep.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 TestVersionStep.cpp
22 #include "testversionstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestVersionStep::~CTestVersionStep()
32 CTestVersionStep::CTestVersionStep()
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(KTestVersionStep);
43 TVerdict CTestVersionStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 INFO_PRINTF1(_L("TestVersionStep started"));
50 CTestUloggerClientApiStepBase::doTestStepPreambleL();
51 return TestStepResult();
55 TVerdict CTestVersionStep::doTestStepL()
57 * @return - TVerdict code
58 * Override of base class pure virtual
59 * Our implementation only gets called if the base class doTestStepPreambleL() did
60 * not leave. That being the case, the current test result value will be EPass.
63 if (TestStepResult()==EPass)
66 TVersion iVer = iSession->Version();
67 if(iVer.iMajor != 0) //just dummy test
70 INFO_PRINTF2(_L("Server version is %S"), &v);
71 SetTestStepResult(EPass);
76 INFO_PRINTF2(_L("query version return wrong version : %S"), &v);
77 SetTestStepResult(EFail);
81 return TestStepResult();
86 TVerdict CTestVersionStep::doTestStepPostambleL()
88 * @return - TVerdict code
89 * Override of base class virtual
92 INFO_PRINTF1(_L("Please delete this line or modify it. I am in Test Step Postamble in Class CTestVersionStep"));
93 // process something post setting to the test step
94 // uncomment the following line if you have common post setting to all the test steps in there
95 // CTe_DummySuiteStepBase::doTestStepPostambleL();
96 // uncomment the following line if you have post process or remove the following line if no post process
97 // SetTestStepResult(EPass); // or EFail
98 return TestStepResult();