diff -r 000000000000 -r b16258d2340f applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/ctestcase26.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/ctestcase26.cpp Tue Feb 02 01:09:52 2010 +0200 @@ -0,0 +1,156 @@ +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include "CTestCase26.h" +#include "httptestutils.h" + +const TInt KTransactionCount = 14; + +CTestCase26* CTestCase26::NewL(CHTTPTestUtils& aTestUtils) + { + CTestCase26* self = new (ELeave) CTestCase26(aTestUtils); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + +CTestCase26::CTestCase26(CHTTPTestUtils& aTestUtils) +: CBatchingTestCase(), iTestUtils(aTestUtils) + { + } + +void CTestCase26::ConstructL() + { + } + +CTestCase26::~CTestCase26() + { + } + +const TDesC& CTestCase26::TestCaseName() const + { + _LIT(KTxtTitle, "Test Case 26"); + return KTxtTitle(); + } + +TInt CTestCase26::TotalTransactionCount() const + { + return KTransactionCount; + } + +RHTTPTransaction CTestCase26::GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient) + { + __ASSERT_ALWAYS(aIndex