os/textandloc/textrendering/texthandling/ttext/t_fmt1.cpp
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) 1997-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 * T_FMT.CPP
    16 *
    17 */
    18 
    19 
    20 #include <txtfmlyr.h>
    21 #include <txtrich.h>
    22 #include <txtfrmat.h>
    23 #include <gdi.h>
    24 #include "../stext/TXTSTD.H"
    25 #include "T_FMT1.h"
    26 
    27 #define test(cond)											\
    28 	{														\
    29 	TBool __bb = (cond);									\
    30 	pTestStep->TEST(__bb);									\
    31 	if (!__bb)												\
    32 		{													\
    33 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    34 		User::Leave(1);										\
    35 		}													\
    36 	}
    37 
    38 void CT_FMT1::TestDEF047316L()
    39 // Test CParaFormat stack definition leave protection
    40 //
    41 	{
    42     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-t_fmt1-0001 CParaFormat - DEF047316 - stack definition leave protection "));
    43 	CParaFormat paraFormat;
    44 	
    45 	// Allocate resources for paraFormat
    46 	TTabStop tabStop;
    47 	paraFormat.StoreTabL(tabStop);
    48 	
    49 	TParaBorder border;
    50 	paraFormat.SetParaBorderL(CParaFormat::EParaBorderTop,border);
    51 
    52 	paraFormat.iBullet=new(ELeave)TBullet;
    53 	
    54 	// Push cleanup method for paraFormat
    55 	ResetOnCleanupL( &paraFormat);
    56 	
    57 	// Force cleanup method to be called
    58 	CleanupStack::PopAndDestroy();
    59 
    60 	// Note that test end is when paraFormat's destructor is called when 
    61 	// this function terminates. The destructor should not cause any problems
    62 	// even though we have already called the cleanup method
    63 	}
    64 
    65 CT_FMT1::CT_FMT1()
    66     {
    67     SetTestStepName(KTestStep_T_FMT1);
    68     }
    69 
    70 TVerdict CT_FMT1::doTestStepL()
    71     {
    72     SetTestStepResult(EFail);
    73 
    74     CTrapCleanup* cleanup=CTrapCleanup::New();
    75     INFO_PRINTF1(_L("TFormat Test Code for DEF047316"));
    76     
    77     __UHEAP_MARK;
    78     TRAPD(error1, TestDEF047316L());
    79 
    80     __UHEAP_MARKEND;
    81     delete cleanup;
    82 
    83     if(error1 == KErrNone)
    84         {
    85         SetTestStepResult(EPass);
    86         }
    87 
    88     return TestStepResult();
    89     }