diff --git a/test/test.cpp b/test/test.cpp new file mode 100644 index 00000000..d51612ce --- /dev/null +++ b/test/test.cpp @@ -0,0 +1,8 @@ +#include + +#include "voxels/Block.hpp" + +TEST(Test1, Test1) { + Block block("test"); + EXPECT_STREQ(block.name.c_str(), "test"); +}