1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/fbs/fontandbitmapserver/tfbs/textendedbitmapnegative.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef TEXTENDEDBITMAPNEGATIVE_H
1.20 +#define TEXTENDEDBITMAPNEGATIVE_H
1.21 +
1.22 +#include "tfbsbase.h"
1.23 +
1.24 +/** Class containing negative tests for extended bitmaps. Negative tests include
1.25 +passing bad parameters to methods used with extended bitmaps, and creating extended
1.26 +bitmaps with no FbsSession.
1.27 + */
1.28 +class CTExtendedBitmapNegative : public CTFbsBase
1.29 + {
1.30 +public:
1.31 + CTExtendedBitmapNegative(CTestStep* aStep);
1.32 + ~CTExtendedBitmapNegative();
1.33 +
1.34 +protected:
1.35 + // From CTFbsBase
1.36 + virtual void RunFbsTestL(TInt aCurTestCase);
1.37 +
1.38 +private:
1.39 + static TInt CreateWithoutFbsSessionStart(TAny* aInfo);
1.40 +
1.41 + // CreateExtendedBitmap() tests
1.42 + void CreateWithoutFbsSessionL();
1.43 + void CreateBadPixelSizeL();
1.44 + void CreateBadDisplayModeL();
1.45 + void CreateRestrictedUidL();
1.46 + void CreateNullDataL();
1.47 + void CreateBadDataSizeL();
1.48 +
1.49 + // ExtendedBitmapType() tests
1.50 + void TypeUninitialisedBitmapL();
1.51 + void TypeStandardBitmapL();
1.52 + void TypeHardwareBitmapL();
1.53 +
1.54 + // DataSize() tests
1.55 + void SizeUninitialisedBitmapL();
1.56 + };
1.57 +
1.58 +
1.59 +class CTExtendedBitmapNegativeStep : public CTGraphicsStep
1.60 + {
1.61 +public:
1.62 + CTExtendedBitmapNegativeStep();
1.63 +
1.64 +protected:
1.65 + //from CTGraphicsStep
1.66 + virtual CTGraphicsBase* CreateTestL();
1.67 + };
1.68 +
1.69 +_LIT(KTExtendedBitmapNegativeStep,"TExtendedBitmapNegative");
1.70 +
1.71 +#endif // TEXTENDEDBITMAPNEGATIVE_H