blob: 5a49b52c1c76825a3ea134db5c3f491643f2c7a1 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <gtest/gtest.h>
#include <windows.h>
int main(int argc, char** argv) {
::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
testing::InitGoogleTest(&argc, argv);
int exit_code = RUN_ALL_TESTS();
::CoUninitialize();
return exit_code;
}