gdiplus: Constructor tests for GpGraphics.

This commit is contained in:
Evan Stade 2007-07-13 17:51:41 -07:00 committed by Alexandre Julliard
parent c760668cab
commit 05a7cef855
2 changed files with 71 additions and 1 deletions

View File

@ -3,10 +3,11 @@ TOPOBJDIR = ../../..
SRCDIR = @srcdir@
VPATH = @srcdir@
TESTDLL = gdiplus.dll
IMPORTS = gdiplus kernel32
IMPORTS = gdiplus user32 gdi32 kernel32
CTESTS = \
brush.c \
graphics.c \
graphicspath.c \
matrix.c \
pen.c

View File

@ -0,0 +1,69 @@
/*
* Unit test suite for graphics objects
*
* Copyright (C) 2007 Google (Evan Stade)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windows.h"
#include "gdiplus.h"
#include "wingdi.h"
#include "wine/test.h"
#define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
static void test_constructor_destructor()
{
GpStatus stat;
GpGraphics *graphics = NULL;
HDC hdc = GetDC(0);
stat = GdipCreateFromHDC(NULL, &graphics);
expect(OutOfMemory, stat);
stat = GdipDeleteGraphics(graphics);
expect(InvalidParameter, stat);
stat = GdipCreateFromHDC(hdc, &graphics);
expect(Ok, stat);
stat = GdipDeleteGraphics(graphics);
expect(Ok, stat);
stat = GdipCreateFromHWND(NULL, &graphics);
expect(Ok, stat);
stat = GdipDeleteGraphics(graphics);
expect(Ok, stat);
stat = GdipDeleteGraphics(NULL);
expect(InvalidParameter, stat);
ReleaseDC(0, hdc);
}
START_TEST(graphics)
{
struct GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
gdiplusStartupInput.GdiplusVersion = 1;
gdiplusStartupInput.DebugEventCallback = NULL;
gdiplusStartupInput.SuppressBackgroundThread = 0;
gdiplusStartupInput.SuppressExternalCodecs = 0;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
test_constructor_destructor();
GdiplusShutdown(gdiplusToken);
}