mirror of
https://github.com/reactos/reactos.git
synced 2026-06-18 04:56:07 +08:00
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.
11 lines
213 B
C
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 }
|
|
};
|