Files
Timo Kreuzer dd27d0e194 [APITESTS] Make sure test functions are name correctly
With automatic test list creation, the function name (from START_TEST(name)) will also be the test name and some of those conflict with wine tests.
2026-05-15 16:50:48 +00:00

11 lines
213 B
C

#define STANDALONE
#include <apitest.h>
extern void func_NcIsValidConnectionName(void);
const struct test winetest_testlist[] =
{
{ "NcIsValidConnectionName", func_NcIsValidConnectionName },
{ 0, 0 }
};