12 lines
200 B
C
Raw Normal View History

2021-10-01 00:21:50 +08:00
#include "gtest/gtest.h"
2021-11-16 16:25:22 +08:00
extern "C" {
#include "dataMemory.h"
}
2021-10-01 00:21:50 +08:00
int main(int argc, char** argv) {
2021-11-20 09:56:30 +08:00
__platformPoolInit();
2021-11-16 16:25:22 +08:00
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
2021-10-01 00:21:50 +08:00
}