7 lines
133 B
C++
Raw Normal View History

2025-06-20 23:38:34 +08:00
#include <gtest/gtest.h>
2024-05-20 21:41:48 +08:00
int main(int argc, char* argv[]) {
2025-06-20 23:38:34 +08:00
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
2024-05-20 21:41:48 +08:00
}