From eedc3b2afbbcdaad947c893d298a1c39105319c2 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Mon, 12 Aug 2024 03:48:51 +0300 Subject: [PATCH] add temporary test --- test/test.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/test.cpp 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"); +}