First public contribution.
2 * Copyright (c) 1997-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.
24 #include "../stext/TXTSTD.H"
29 TBool __bb = (cond); \
30 pTestStep->TEST(__bb); \
33 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
38 void CT_FMT1::TestDEF047316L()
39 // Test CParaFormat stack definition leave protection
42 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-t_fmt1-0001 CParaFormat - DEF047316 - stack definition leave protection "));
43 CParaFormat paraFormat;
45 // Allocate resources for paraFormat
47 paraFormat.StoreTabL(tabStop);
50 paraFormat.SetParaBorderL(CParaFormat::EParaBorderTop,border);
52 paraFormat.iBullet=new(ELeave)TBullet;
54 // Push cleanup method for paraFormat
55 ResetOnCleanupL( ¶Format);
57 // Force cleanup method to be called
58 CleanupStack::PopAndDestroy();
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
67 SetTestStepName(KTestStep_T_FMT1);
70 TVerdict CT_FMT1::doTestStepL()
72 SetTestStepResult(EFail);
74 CTrapCleanup* cleanup=CTrapCleanup::New();
75 INFO_PRINTF1(_L("TFormat Test Code for DEF047316"));
78 TRAPD(error1, TestDEF047316L());
83 if(error1 == KErrNone)
85 SetTestStepResult(EPass);
88 return TestStepResult();