Update contrib.
1 // Copyright (c) 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.
19 @internalComponent - Internal Symbian test code
26 //Enumeration used in TRemoteTestResult
27 //to describe the outcome of the test.
28 enum TRemoteTestVerdict
40 //This is the base class for all remote test steps. Derived classes should implement
41 //DoRemoteTestStepL(), and return the result of the test as a TVerdict.
42 //Logging is provided with Log(), Logging messages are limitted to 86 chars and
43 //any longer messages are silently truncated. Log will only work when in the actual
44 //test step. Use the Logger Macros instead of using Log() directly.
48 virtual void Log(const TText8* aFile, TInt aLine, TInt aSeverity, TRefByValue<const TDesC> aFmt, ...)=0;