equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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 #ifndef __CINC077703_H__ |
|
17 #define __CINC077703_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <http.h> |
|
21 |
|
22 #include "CPipeliningTestCase.h" |
|
23 |
|
24 class CHTTPTestUtils; |
|
25 |
|
26 class CINC077703 : public CPipeliningTestCase |
|
27 { |
|
28 public: |
|
29 static CINC077703* NewL(CHTTPTestUtils& aTestUtils); |
|
30 ~CINC077703(); |
|
31 |
|
32 private: |
|
33 CINC077703(CHTTPTestUtils& aTestUtils); |
|
34 |
|
35 // From MPipeliningTestCase |
|
36 const TDesC& TestCaseName() const; |
|
37 TInt TotalTransactionCount() const; |
|
38 RHTTPTransaction GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient); |
|
39 const TDesC8& GetRawRequest(TInt aConnectionIndex, TInt aTransIndex); |
|
40 const TDesC8& GetRawResponse(TInt aConnectionIndex, TInt aTransIndex); |
|
41 TInt ConnectionCount() const; |
|
42 |
|
43 private: |
|
44 CHTTPTestUtils& iTestUtils; |
|
45 }; |
|
46 |
|
47 #endif // __CINC077703_H__ |