12 lines
295 B
C++
12 lines
295 B
C++
#include <gtest/gtest.h>
|
|
|
|
// 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();
|
|
}
|