#include // Main test runner for integration tests int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); // Set up any global test configuration here // Integration tests might need different setup than unit tests return RUN_ALL_TESTS(); }