#include // Main test runner for unit tests int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); // Set up any global test configuration here // For example, you can set test filters, output format, etc. return RUN_ALL_TESTS(); }