Files
pokemon-battle-engine/tests/unit/main.cpp
cdemeyer-teachx 1c1e7f8d51 Google Tests
2025-08-14 10:19:03 +09:00

12 lines
286 B
C++

#include <gtest/gtest.h>
// 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();
}