sl@0: /* sl@0: * Copyright (c) 1998-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 the License "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: sl@0: #ifndef __T_TESTACTIONSPEC_H__ sl@0: #define __T_TESTACTIONSPEC_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: sl@0: class CConsoleBase; sl@0: class Output; sl@0: sl@0: /** sl@0: * TODO sl@0: */ sl@0: class TTestActionSpec sl@0: { sl@0: public: sl@0: TTestActionSpec(); sl@0: ~TTestActionSpec(); sl@0: TInt Init(const TDesC8& aInput, TInt& aPos, CConsoleBase& aConsole, Output& aOut, TInt& aBitFlag); sl@0: // TInt TEFInit(RFs& aFs, const TDesC8& aInput, HBufC8*& aSectionData, HBufC8*& aIniSectionResultBody, const TDesC8& aTestCaseID, const TDesC8& aPrevTestCaseID, const TDesC8& aTestDescription, TBool testSet, const TDesC& aScriptPath, CConsoleBase& aConsole, Output& aOut, TInt& aBitFlag); sl@0: TInt TEFInit(RFs& aFs, const TDesC8& aInput, const TDesC8& aTestCaseID, TDesC8& aPrevTestCaseID, TBool& tefFile, TBool& runtest, TBool& iniFile, TDes8& aScriptResult , TDes8& aActionType, const TDesC& aScriptPath, CConsoleBase& /*aConsole*/, Output& aOut); sl@0: void HardcodedInit(const TDesC8& aInput); sl@0: sl@0: public: sl@0: TPtrC8 iActionName; sl@0: TPtrC8 iActionType; sl@0: TPtrC8 iActionGroup; sl@0: TPtrC8 iActionBody; sl@0: TPtrC8 iActionResult; sl@0: sl@0: sl@0: sl@0: TBool iTefScript; sl@0: sl@0: TPtrC8 iActionDescription; sl@0: sl@0: RBuf8 iniSectionResultBody; sl@0: RBuf8 aTestIniFilePtr; // This will hold the location in Heap where the ini file has been loaded for general use sl@0: sl@0: /** sl@0: * This member indicates the expected result of the action. sl@0: */ sl@0: sl@0: }; sl@0: sl@0: #endif sl@0: