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.
21 #include <test/testexecutestepbase.h>
23 class CT_CONVS : public CTestStep
28 TVerdict doTestStepL();
30 template <class T> void testCopy(T &aCopy,const T &anOriginal);
31 template <class T> void testStoreRestoreL(T& aCopy,const T& aOriginal);
32 template <class T> void testCopyChain(T &aCopy,const T &anOriginal,TInt aExcludeCount,const CFormatLayer* aBase);
33 TInt IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal);
34 void testPlainTextL(CEditableText::TDocumentStorage aStorage);
35 void testGlobalTextL(CEditableText::TDocumentStorage aStorage);
36 TInt LayerIsEqual(const CParaFormatLayer* aRestored,const CParaFormatLayer* aOriginal);
37 TInt LayerIsEqual(const CCharFormatLayer* aRestored,const CCharFormatLayer* aOriginal);
38 void testFmtLayerStoreL();
39 TInt ChainIsEqual(const CParaFormatLayer* aCopy,const CParaFormatLayer* aOriginal);
40 TInt ChainIsEqual(const CCharFormatLayer* aCopy,const CCharFormatLayer* aOriginal);
43 void DoCharChainVariant1();
44 void testFmtLayerStoreChainL();
47 void DeleteDataFile(const TDesC& aFullName);
50 _LIT(KTestStep_T_CONVS, "T_CONVS");