#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 result = TestCaseRunner::getInstance().run(); #ifdef _WIN32 CoUninitialize(); #endif return 0; }