* @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) */
| 439 | * @return Test execution status (0 = success) |
| 440 | */ |
| 441 | int main(int argc, char **argv) { |
| 442 | ::testing::InitGoogleTest(&argc, argv); |
| 443 | return RUN_ALL_TESTS(); |
| 444 | } |
nothing calls this directly
no outgoing calls
no test coverage detected