os/textandloc/textrendering/texthandling/ttext/T_CONVS.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 #ifndef __T_CONVS_H__
    19 #define __T_CONVS_H__
    20 
    21 #include <test/testexecutestepbase.h>
    22 
    23 class CT_CONVS : public CTestStep
    24 	{
    25 public:
    26 	CT_CONVS();
    27 protected:
    28 	TVerdict doTestStepL();
    29 private:
    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);
    41 	void DoParaChainL();
    42 	void DoCharChainL();
    43 	void DoCharChainVariant1();
    44 	void testFmtLayerStoreChainL();
    45 	void testFmtLayerL();
    46 	void setupCleanup();
    47 	void DeleteDataFile(const TDesC& aFullName);
    48 	};
    49 
    50 _LIT(KTestStep_T_CONVS, "T_CONVS");
    51 
    52 #endif