This commit is contained in:
2026-04-27 06:08:39 -05:00
parent 417747f5ee
commit c812054533
8 changed files with 126 additions and 12 deletions

12
src/bytecode/tests.cc Normal file
View File

@@ -0,0 +1,12 @@
#include "gtest/gtest.h"
TEST(test, test)
{
ASSERT_EQ(1, 1);
}
int main(int argc, char** argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}