user32/tests: Add tests for VK_SPACE, Shift-Space and Ctrl-Space.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hugh McMaster 2015-12-01 21:38:01 +11:00 committed by Alexandre Julliard
parent 598d334e73
commit c87a78bc94
1 changed files with 3 additions and 0 deletions

View File

@ -1635,6 +1635,9 @@ static const struct tounicode_tests
{ 0, ctrl, '^', 1, {0x1e}},
{ 0, ctrl, '_', 1, {0x1f}},
{ 0, ctrl, '`', 0, {}},
{ VK_SPACE, 0, 0, 1, {' ',0}},
{ VK_SPACE, shift, 0, 1, {' ',0}},
{ VK_SPACE, ctrl, 0, 1, {' ',0}},
};
static void test_ToUnicode(void)