* @brief Main test runner function * * Initializes Google Test framework and runs all registered test cases. * Called by the test execution environment to start the testing process. * Returns 0 for success, non-zero for test failures. * * @param argc Command line argument count * @param argv Command line argument values * @return Test execution status (0 = success) */
| 2013 | * @return Test execution status (0 = success) |
| 2014 | */ |
| 2015 | int main(int argc, char **argv) { |
| 2016 | ::testing::InitGoogleTest(&argc, argv); |
| 2017 | return RUN_ALL_TESTS(); |
| 2018 | } |
nothing calls this directly
no outgoing calls
no test coverage detected