reactos/modules/rostests/unittests/interop/testlist.c
Stanislav Motylkov b6ae42492b
[INTEROP_UNITTEST] Add interoperability tests for localized strings (#7129)
Finally, an automated way to verify all these localized strings
that must be in sync between multiple modules.

CORE-18893
2024-09-01 15:22:29 +03:00

19 lines
414 B
C

/*
* PROJECT: ReactOS interoperability tests
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: List of tests
* COPYRIGHT: Copyright 2024 Stanislav Motylkov <x86corez@gmail.com>
*/
#define STANDALONE
#include <wine/test.h>
extern void func_LocaleTests(void);
const struct test winetest_testlist[] =
{
{ "LocaleTests", func_LocaleTests },
{ 0, 0 }
};