aboutsummaryrefslogtreecommitdiff
path: root/test/dummy.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-03 19:51:41 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-03 19:51:41 +0200
commit287ade1d321c983ddd00025864f9ea59d31c4493 (patch)
treee0722c1ce91355762ffb05e482f958c7bbd5e777 /test/dummy.cpp
parentc818aa8a02d2809b3189a1fdbec580fd59d22ce2 (diff)
add googletest unit testing setup
Diffstat (limited to 'test/dummy.cpp')
-rw-r--r--test/dummy.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/dummy.cpp b/test/dummy.cpp
new file mode 100644
index 0000000..08850b2
--- /dev/null
+++ b/test/dummy.cpp
@@ -0,0 +1,6 @@
+#include <gtest/gtest.h>
+
+TEST(dummy, foo) {
+ ASSERT_TRUE(1);
+}
+