mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
1e4af3fa18
Fix (R)TEST macros in gdi32_apitest, ensures correct display and no crash report in testman. svn path=/trunk/; revision=49182
60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for GetTextExtentExPoint
|
|
* PROGRAMMERS: Timo Kreuzer
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <wine/test.h>
|
|
#include <windows.h>
|
|
|
|
#define TEST(x) ok(x, #x"\n")
|
|
#define RTEST(x) ok(x, #x"\n")
|
|
|
|
void Test_GetTextExtentExPoint()
|
|
{
|
|
INT nFit;
|
|
SIZE size;
|
|
BOOL result;
|
|
|
|
SetLastError(0);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, 1000, &nFit, NULL, &size);
|
|
TEST(result == 1);
|
|
TEST(nFit == 4);
|
|
TEST(GetLastError() == 0);
|
|
printf("nFit = %d\n", nFit);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, 1, &nFit, NULL, &size);
|
|
TEST(result == 1);
|
|
TEST(nFit == 0);
|
|
TEST(GetLastError() == 0);
|
|
printf("nFit = %d\n", nFit);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, 0, &nFit, NULL, &size);
|
|
TEST(result == 1);
|
|
TEST(nFit == 0);
|
|
TEST(GetLastError() == 0);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, -1, &nFit, NULL, &size);
|
|
TEST(result == 1);
|
|
TEST(nFit == 4);
|
|
TEST(GetLastError() == 0);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, -2, &nFit, NULL, &size);
|
|
TEST(result == 0);
|
|
TEST(GetLastError() == 87);
|
|
|
|
result = GetTextExtentExPointW(GetDC(0), L"test", 4, -10, &nFit, NULL, &size);
|
|
TEST(result == 1);
|
|
|
|
result = GetTextExtentExPointA(GetDC(0), "test", 4, -10, &nFit, NULL, &size);
|
|
TEST(result == 0);
|
|
}
|
|
|
|
START_TEST(GetTextExtentExPoint)
|
|
{
|
|
Test_GetTextExtentExPoint();
|
|
}
|
|
|