Update contrib.
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
25 #include <test/testexecutestepbase.h>
27 class CTUndoStep : public CTestStep
31 void print(const TDesC& aBuf, const TText8* text, int line);
32 void testpoint(TBool aCondition, const TText8* text, int line );
34 TVerdict doTestStepL();
37 inline void CTUndoStep::print(const TDesC& aBuf, const TText8* text, int line)
39 Logger().LogExtra((text), line, ESevrInfo, (aBuf));
42 inline void CTUndoStep::testpoint(TBool aCondition, const TText8* text, int line )
44 testBooleanTrue((aCondition), text, line);
47 _LIT(KTestStep_T_Undo, "T_Undo");