equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 #ifndef __MULTITRANS_H__ |
|
18 #define __MULTITRANS_H__ |
|
19 |
|
20 #include "HttpTestCore.h" |
|
21 #include "trans.h" |
|
22 #include "CHttpAccepTtestBase.h" |
|
23 #include <http.h> |
|
24 #include "TestScripts.h" |
|
25 |
|
26 /*TODO */ |
|
27 |
|
28 class CHttpTestMultipleTransactions: public CHttpTestTransactions |
|
29 { |
|
30 public: |
|
31 static CHttpTestMultipleTransactions* NewL(CScriptFile& aIniFile, |
|
32 CScriptFile* aIniSettingsFile, const TInt aSectionNumber); |
|
33 protected: |
|
34 void DoRunL(); |
|
35 void OpenTestSessionL(); |
|
36 void CloseTestSession(); |
|
37 |
|
38 void CreateSingleTransactionL(); |
|
39 |
|
40 |
|
41 private: |
|
42 void ConstructL(CScriptFile& aIniFile, CScriptFile* aIniSettingsFile, |
|
43 const TInt aSectionNumber); |
|
44 |
|
45 private: |
|
46 RArray<RHTTPTransaction> iTransactions; |
|
47 }; |
|
48 |
|
49 #endif |
|
50 |