os/textandloc/textrendering/textformatting/test/src/TFormat.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/textformatting/test/src/TFormat.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,65 @@
     1.4 +/*
     1.5 +* Copyright (c) 2004-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 +* TFormat.cpp tests for TTmCharFormat and CTmParFormat
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#include "TAGMA.H"
    1.24 +#include <txtfrmat.h>
    1.25 +#include <e32test.h>
    1.26 +#include "tformat.h"
    1.27 +
    1.28 +#define UNUSED_VAR(a) a = a
    1.29 +
    1.30 +namespace LocalToTFormat
    1.31 +{
    1.32 +CTFormatStep* TestStep = NULL;
    1.33 +#define TESTPOINT(p) TestStep->testpoint(p,(TText8*)__FILE__,__LINE__)
    1.34 +#define TESTPRINT(p) TestStep->print(p,(TText8*)__FILE__,__LINE__)
    1.35 +}
    1.36 +using namespace LocalToTFormat;
    1.37 +
    1.38 +void INC041190()
    1.39 +	{
    1.40 +	TTmCharFormat tmcf;
    1.41 +	TCharFormat cf;
    1.42 +	cf.iFontPresentation.iHighlightStyle
    1.43 +		= TFontPresentation::EFontHighlightNoMatchesIndicator;
    1.44 +	tmcf.iEffects = 0;
    1.45 +	tmcf = cf;
    1.46 +	TESTPOINT(tmcf.iEffects == TTmCharFormat::ENoMatchesIndicator);
    1.47 +	cf.iFontPresentation.iHighlightStyle
    1.48 +		= TFontPresentation::EFontHighlightNone;
    1.49 +	tmcf.GetTCharFormat(cf);
    1.50 +	TESTPOINT(cf.iFontPresentation.iHighlightStyle
    1.51 +		== TFontPresentation::EFontHighlightNoMatchesIndicator);
    1.52 +	}
    1.53 +
    1.54 +TVerdict CTFormatStep::doTestStepL()
    1.55 +	{
    1.56 +    SetTestStepResult(EPass);
    1.57 +    TestStep = this;
    1.58 +    TESTPRINT(_L("TFormat - TTmCharFormat and CTmParFormat"));
    1.59 +    
    1.60 +	__UHEAP_MARK;
    1.61 +
    1.62 +	TESTPRINT(_L(" @SYMTestCaseID:SYSLIB-FORM-LEGACY-TFORMAT-0001 INC041190 - EText's EFontHighlightNoMatchesIndicator isn't mappd to anythng in TTmCharFormat "));
    1.63 +	INC041190();
    1.64 +
    1.65 +	__UHEAP_MARKENDC(0);
    1.66 +	return TestStepResult();
    1.67 +	}
    1.68 +