sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __T_WSERV_INTEG_STEP_SURFACE_H__
|
sl@0
|
22 |
#define __T_WSERV_INTEG_STEP_SURFACE_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "t_wservintegstepbase.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
_LIT(KWServPseudoApp, "z:\\sys\\bin\\t_pseudoapp.exe");
|
sl@0
|
27 |
_LIT(KWServPseudoApp1, "z:\\sys\\bin\\t_pseudoapp1.exe");
|
sl@0
|
28 |
|
sl@0
|
29 |
_LIT(KWServTApp1, "z:\\sys\\bin\\t_app1.exe");
|
sl@0
|
30 |
|
sl@0
|
31 |
_LIT(KPseudoAppData, "pseudoapp_data%d");
|
sl@0
|
32 |
_LIT(KPseudoAppDataName, "pseudoapp_data%d_name");
|
sl@0
|
33 |
|
sl@0
|
34 |
_LIT(KPseudoApp1Data, "pseudoapp1_data%d");
|
sl@0
|
35 |
_LIT(KPseudoApp1DataName, "pseudoapp1_data%d_name");
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT(KSimLoadData, "simload_data%d");
|
sl@0
|
38 |
_LIT(KSimLoadDataName, "simload_data%d_name");
|
sl@0
|
39 |
|
sl@0
|
40 |
_LIT(KTApp1Data, "tapp1_data%d");
|
sl@0
|
41 |
_LIT(KTApp1DataName, "tapp1_data%d_name");
|
sl@0
|
42 |
|
sl@0
|
43 |
_LIT(KPseudoAppResultData, "pseudoappresult_data%d");
|
sl@0
|
44 |
_LIT(KPseudoAppResultDataName, "pseudoappresult_data%d_name");
|
sl@0
|
45 |
|
sl@0
|
46 |
_LIT(KPseudoApp1ResultData, "pseudoapp1result_data%d");
|
sl@0
|
47 |
_LIT(KPseudoApp1ResultDataName, "pseudoapp1result_data%d_name");
|
sl@0
|
48 |
|
sl@0
|
49 |
_LIT(KT_WServIntegStepSurface, "WServIntegSurface");
|
sl@0
|
50 |
|
sl@0
|
51 |
_LIT(KCreatePseudoApp1,"create_pseudoapp1");
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
class CT_WServIntegStepSurface : public CT_WServIntegStep
|
sl@0
|
55 |
{
|
sl@0
|
56 |
public:
|
sl@0
|
57 |
// Constructor
|
sl@0
|
58 |
CT_WServIntegStepSurface();
|
sl@0
|
59 |
virtual enum TVerdict doTestStepL();
|
sl@0
|
60 |
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
void CreatePseudoAppProcL();
|
sl@0
|
63 |
void CreateSimLoadProcL();
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
#endif //__T_WSERV_INTEG_STEP_SURFACE_H__
|