2022-05-02 19:49:47 +08:00

13 lines
226 B
C

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