9 lines
214 B
C++
9 lines
214 B
C++
// Copyright by Contributors
|
|
#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();
|
|
}
|