First public contribution.
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.
20 #ifndef TGRAPHEMEITERATOR_H_
21 #define TGRAPHEMEITERATOR_H_
24 #include <test/testexecutestepbase.h>
26 class CTGraphemeIteratorStep : public CTestStep
29 CTGraphemeIteratorStep(){};
30 void print(const TDesC& aBuf, const TText8* text, int line);
31 void testpoint(TBool aCondition, const TText8* text, int line);
33 TVerdict doTestStepL();
36 inline void CTGraphemeIteratorStep::print(const TDesC& aBuf, const TText8* text, int line)
38 Logger().LogExtra((text), line, ESevrInfo, (aBuf));
41 inline void CTGraphemeIteratorStep::testpoint(TBool aCondition, const TText8* text, int line )
43 testBooleanTrue((aCondition), text, line);
46 _LIT(KTestStep_T_GraphemeIterator, "T_GraphemeIterator");
48 #endif /* TGRAPHEMEITERATOR_H_ */