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