1 /* 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 */ 7 8 #include <folly/init/Init.h> 9 #include <gtest/gtest.h> 10 main(int argc,char ** argv)11int main(int argc, char **argv) { 12 ::testing::InitGoogleTest(&argc, argv); 13 folly::init(&argc, &argv); 14 return RUN_ALL_TESTS(); 15 } 16