Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #include "te_cryptospistepbase.h"
25 #include "te_cryptospidefs.h"
27 // Device driver constants
29 TVerdict CTe_CryptoSpiStepBase::doTestStepPreambleL()
32 * Implementation of CTestStep base class virtual
33 * It is used for doing all initialisation common to derived classes in here.
34 * Make it being able to leave if there are any errors here as there's no point in
35 * trying to run a test step if anything fails.
36 * The leave will be picked up by the framework.
40 // process some common pre setting to test steps then set SetTestStepResult to EFail or Epass.
41 INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPreambleL() of the class CTe_CryptoSpiStepBase!"));
42 SetTestStepResult(EPass);
43 return TestStepResult();
46 TVerdict CTe_CryptoSpiStepBase::doTestStepPostambleL()
49 * Implementation of CTestStep base class virtual
50 * It is used for doing all after test treatment common to derived classes in here.
51 * Make it being able to leave
52 * The leave will be picked up by the framework.
56 // process some common post setting to test steps then set SetTestStepResult to EFail or Epass.
57 INFO_PRINTF1(_L("Please delete this line or modify me!! I am in doTestStepPostambleL() of the class CTe_CryptoSpiStepBase!"));
58 //SetTestStepResult(EPass); // or EFail
59 return TestStepResult();
62 CTe_CryptoSpiStepBase::~CTe_CryptoSpiStepBase()
66 CTe_CryptoSpiStepBase::CTe_CryptoSpiStepBase()