add libc_test

This commit is contained in:
scawful
2024-08-06 22:23:23 -04:00
parent 3b644e8da8
commit 88b87fc7cf

12
src/test/libc_test.cc Normal file
View File

@@ -0,0 +1,12 @@
#include <gtest/gtest.h>
#include "yaze.h"
namespace yaze_test {
TEST(YazeCLibTest, InitializeAndCleanup) {
yaze_initialize();
yaze_cleanup();
}
} // namespace yaze_test