Files
wj32 216ee0ada2 * added tests
* deleted useless vcproj files

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3928 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-12-24 03:27:11 +00:00

16 lines
243 B
C

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