2025-05-13 19:45:22 +03:00

17 lines
249 B
C

#include "tests.h"
int __cdecl wmain(int argc, wchar_t *argv[])
{
NTSTATUS status;
status = PhInitializePhLib();
assert(NT_SUCCESS(status));
Test_basesup();
Test_avltree();
Test_format();
Test_util();
return 0;
}