stuff-from-scratch/test/test_runner.cpp
2022-11-30 18:28:50 +00:00

20 lines
374 B
C++

#include "TestFramework.h"
#ifdef _WIN32
#include <windows.h>
#endif
//int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow)
int main()
{
#ifdef _WIN32
CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
#endif
auto result = TestCaseRunner::getInstance().run();
#ifdef _WIN32
CoUninitialize();
#endif
return 0;
}