2021-11-20 09:56:30 +08:00

12 lines
200 B
C

#include "gtest/gtest.h"
extern "C" {
#include "dataMemory.h"
}
int main(int argc, char** argv) {
__platformPoolInit();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}