| 32 | #include "gtest/gtest.h" |
| 33 | |
| 34 | GTEST_API_ int main(int argc, char **argv) { |
| 35 | std::cout << "Running main() from gtest_main.cc\n"; |
| 36 | |
| 37 | testing::InitGoogleTest(&argc, argv); |
| 38 | return RUN_ALL_TESTS(); |
| 39 | } |
nothing calls this directly
no test coverage detected