Files
James Lamb 1d878207fc [docs] [ci] Update docs and source code for org change (#7188)
* update organization reference, copyrights

* add note about the repo change

* make all GPU CI manual-only
2026-03-11 07:02:01 -05:00

13 lines
433 B
C++

/*!
* Copyright (c) 2021-2026 Microsoft Corporation. All rights reserved.
* Copyright (c) 2021-2026 The LightGBM developers. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
#include <gtest/gtest.h>
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
testing::FLAGS_gtest_death_test_style = "threadsafe";
return RUN_ALL_TESTS();
}