Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __TESTCLIENT__
17 #define __TESTCLIENT__
20 #include <testframework.h>
22 #define KMaxServerNameLength 256
25 class RTestServ : public RSessionBase
32 IMPORT_C TInt Connect(const TDesC& aServerName);
33 IMPORT_C const TDesC& ServerName() const;
37 TBuf<KMaxServerNameLength> iServerName;
38 TVersion Version() const;
42 class RTestSession : public RSubSessionBase
49 IMPORT_C TInt Open(RTestServ& aServ, const TDesC& aStepName, TBool aSharedData = EFalse);
50 IMPORT_C void StartProcessing(TRequestStatus& aStatus);
51 IMPORT_C TVerdict EndProcessingAndReturnResult(TDes8& aMessage);
52 IMPORT_C void Close();