mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
4b95e17c61
Introduce a "apitest.h" header gathering special things for apitests (SEH macros, wine/test.h inclusion, and so on...). svn path=/trunk/; revision=60313
27 lines
884 B
C
27 lines
884 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Test for lstrcpynW
|
|
*/
|
|
|
|
#include <apitest.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <stdio.h>
|
|
|
|
START_TEST(lstrcpynW)
|
|
{
|
|
WCHAR buffer[256];
|
|
|
|
/* Test basic functionality */
|
|
ok(lstrcpynW(buffer, L"Copy this string", 256) == buffer, "lstrncpyW failed!\n");
|
|
ok(!lstrcmpW(buffer, L"Copy this string"), "Copy went wrong.\n");
|
|
|
|
/* Test for buffer too small */
|
|
ok(lstrcpynW(buffer, L"Copy this string", 10) == buffer, "lstrncpyW failed!\n");
|
|
ok(buffer[9] == 0, "lstrncpyW should have NULL-terminated the string");
|
|
ok(!lstrcmpW(buffer, L"Copy this"), "Copy went wrong.\n");
|
|
|
|
/* Test some invalid buffer */
|
|
ok(lstrcpynW((LPWSTR)0xbaadf00d, L"Copy this string", 256) == NULL, "lstrncpyW should have returned NULL.\n");
|
|
}
|