Update contrib.
1 // Copyright (c) 2006-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.
22 #ifndef __T_WSERV_INTEG_STEP_H__
23 #define __T_WSERV_INTEG_STEP_H__
26 #include <test/testexecutestepbase.h>
27 #include "t_wservconfigdata.h"
30 _LIT(KT_WServIntegStep, "WServInteg");
33 WServ Integ test commands
35 class CT_WServIntegStep : public CTestStep
41 virtual ~CT_WServIntegStep();
42 virtual enum TVerdict doTestStepPreambleL();
43 virtual enum TVerdict doTestStepL();
44 virtual enum TVerdict doTestStepPostambleL();
47 void ClearConfigData();
49 void GetConfigDataL(const TDesC& aData, const TDesC& aName);
50 void PrintConfigDataL(const TDesC& /*aFileName*/);
51 TInt CreateTestProcessL(const TDesC& aApp, const TProcessPriority& aPriority);
52 void WaitForTestL(const TDesC& aFileName, const TInt& aMaxTimeSeconds = 120);
53 void CheckResultsL(const TDesC& aData, const TDesC& aName,const TDesC& aFileName);
54 void PrintResultsL(const TDesC& aFileName);
55 void PrintTestStepName();
58 CT_WServConfigData iWServConfigData;
59 RArray<RProcess> iProcessList;
60 RPointerArray<TDesC> iFileList;
64 #endif // __T_WSERV_INTEG_STEP_H__