From 00bfec66319e3e53a3b51d1d1ffbc899633f29a2 Mon Sep 17 00:00:00 2001 From: Keuin Date: Mon, 11 Apr 2022 10:07:48 +0800 Subject: Basic 3d vector operations. Testing with GoogleTest. --- test.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test.cpp (limited to 'test.cpp') diff --git a/test.cpp b/test.cpp new file mode 100644 index 0000000..b1e5199 --- /dev/null +++ b/test.cpp @@ -0,0 +1,15 @@ +// +// Created by Keuin on 2022/4/11. +// + +#include + +#include "vec.h" + +TEST(Vec, VecAdd) { + vec3i a{1, 1, 1}, b{2, 2, 2}, c{3, 3, 3}; + ASSERT_EQ(a + b, c); + + vec3d d{1.1, 2.2, 3.3}, e{4.4, 5.5, 6.6}, f{5.5, 7.7, 9.9}; + ASSERT_EQ(d + e, f); +} \ No newline at end of file -- cgit v1.2.3