10 lines
217 B
C++
10 lines
217 B
C++
|
|
#include <gtest/gtest.h>
|
||
|
|
|
||
|
|
// Entry Point for Gtests Infra
|
||
|
|
|
||
|
|
int main(int argc, char **argv) {
|
||
|
|
testing::InitGoogleTest(&argc, argv);
|
||
|
|
testing::FLAGS_gtest_death_test_style = "threadsafe";
|
||
|
|
return RUN_ALL_TESTS();
|
||
|
|
}
|