os/textandloc/textrendering/texthandling/ttext/t_fmt1.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/t_fmt1.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,89 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* T_FMT.CPP
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#include <txtfmlyr.h>
    1.24 +#include <txtrich.h>
    1.25 +#include <txtfrmat.h>
    1.26 +#include <gdi.h>
    1.27 +#include "../stext/TXTSTD.H"
    1.28 +#include "T_FMT1.h"
    1.29 +
    1.30 +#define test(cond)											\
    1.31 +	{														\
    1.32 +	TBool __bb = (cond);									\
    1.33 +	pTestStep->TEST(__bb);									\
    1.34 +	if (!__bb)												\
    1.35 +		{													\
    1.36 +		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    1.37 +		User::Leave(1);										\
    1.38 +		}													\
    1.39 +	}
    1.40 +
    1.41 +void CT_FMT1::TestDEF047316L()
    1.42 +// Test CParaFormat stack definition leave protection
    1.43 +//
    1.44 +	{
    1.45 +    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-t_fmt1-0001 CParaFormat - DEF047316 - stack definition leave protection "));
    1.46 +	CParaFormat paraFormat;
    1.47 +	
    1.48 +	// Allocate resources for paraFormat
    1.49 +	TTabStop tabStop;
    1.50 +	paraFormat.StoreTabL(tabStop);
    1.51 +	
    1.52 +	TParaBorder border;
    1.53 +	paraFormat.SetParaBorderL(CParaFormat::EParaBorderTop,border);
    1.54 +
    1.55 +	paraFormat.iBullet=new(ELeave)TBullet;
    1.56 +	
    1.57 +	// Push cleanup method for paraFormat
    1.58 +	ResetOnCleanupL( &paraFormat);
    1.59 +	
    1.60 +	// Force cleanup method to be called
    1.61 +	CleanupStack::PopAndDestroy();
    1.62 +
    1.63 +	// Note that test end is when paraFormat's destructor is called when 
    1.64 +	// this function terminates. The destructor should not cause any problems
    1.65 +	// even though we have already called the cleanup method
    1.66 +	}
    1.67 +
    1.68 +CT_FMT1::CT_FMT1()
    1.69 +    {
    1.70 +    SetTestStepName(KTestStep_T_FMT1);
    1.71 +    }
    1.72 +
    1.73 +TVerdict CT_FMT1::doTestStepL()
    1.74 +    {
    1.75 +    SetTestStepResult(EFail);
    1.76 +
    1.77 +    CTrapCleanup* cleanup=CTrapCleanup::New();
    1.78 +    INFO_PRINTF1(_L("TFormat Test Code for DEF047316"));
    1.79 +    
    1.80 +    __UHEAP_MARK;
    1.81 +    TRAPD(error1, TestDEF047316L());
    1.82 +
    1.83 +    __UHEAP_MARKEND;
    1.84 +    delete cleanup;
    1.85 +
    1.86 +    if(error1 == KErrNone)
    1.87 +        {
    1.88 +        SetTestStepResult(EPass);
    1.89 +        }
    1.90 +
    1.91 +    return TestStepResult();
    1.92 +    }