Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Wrapper for RTest which logs to a file, counts failures (without panicing) and
16 * generates a final result line the ONB will parse.
28 #ifndef RTESTWRAPPER_H
29 #define RTESTWRAPPER_H
32 class RTestWrapper : public RTest
35 IMPORT_C RTestWrapper(const TDesC &aTitle,TInt aThrowaway,const TText* anOtherThrowaway);
36 IMPORT_C void operator()(TInt aResult,TInt aLineNum,const TText* aFileName);
38 IMPORT_C void Title(const TDesC &aFileName);
39 IMPORT_C void Start(const TDesC &aHeading);
40 IMPORT_C void Next(const TDesC &aHeading);
44 /// Test group nest level. Incremented by Start, decremented by End
47 /// Incremented whenever Start or Next is called
50 /// Set if current test fails, and iFailedCount incremented.
51 /// Cleared whenever Start or Next is Called.
52 TBool iThisTestFailed;
54 /// Count of failed tests