1 2 3 4 5 6 7 8
#include <gtest/gtest.h> int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); auto test_result = RUN_ALL_TESTS(); return test_result; }