From fb8197839c0bebc20fd68ee3f280da934c49c473 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 22 Dec 2017 21:16:02 +0000 Subject: Removing editor and refactoring code. --- tests/vector4/test.cpp | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 tests/vector4/test.cpp (limited to 'tests/vector4/test.cpp') diff --git a/tests/vector4/test.cpp b/tests/vector4/test.cpp new file mode 100644 index 00000000..53554a25 --- /dev/null +++ b/tests/vector4/test.cpp @@ -0,0 +1,99 @@ +/** --------------------------------------------------------------------------- + * @file: vector4test.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +/** --------------------------------------------------------------------------- + * @file: vector4test.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +/** --------------------------------------------------------------------------- + * @file: vector4test.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +/** --------------------------------------------------------------------------- + * @file: vector4test.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +/** --------------------------------------------------------------------------- + * @file: vector4test.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +#include +#include + +#include +#include + +using namespace yage; + +TEST(Vector4, Initialize) +{ + Vector4i vec{{rand(), rand(), rand(), rand()}}; + ASSERT_EQ(vec.x, vec[0]); + ASSERT_EQ(vec.y, vec[1]); + ASSERT_EQ(vec.z, vec[2]); + ASSERT_EQ(vec.w, vec[3]); +} + +TEST(Vector4, Assigning_x) +{ + Vector4i vec{{rand(), rand(), rand(), rand()}}; + vec.x = rand(); + ASSERT_EQ(vec.x, vec[0]); + vec[0] = rand(); + ASSERT_EQ(vec.x, vec[0]); +} + +TEST(Vector4, Assigning_y) +{ + Vector4i vec{{rand(), rand(), rand(), rand()}}; + vec.y = rand(); + ASSERT_EQ(vec.y, vec[1]); + vec[1] = rand(); + ASSERT_EQ(vec.y, vec[1]); +} + +TEST(Vector4, Assigning_z) +{ + Vector4i vec{{rand(), rand(), rand(), rand()}}; + vec.z = rand(); + ASSERT_EQ(vec.z, vec[2]); + vec[2] = rand(); + ASSERT_EQ(vec.z, vec[2]); +} + +TEST(Vector4, Assigning_w) +{ + Vector4i vec{{rand(), rand(), rand(), rand()}}; + vec.w = rand(); + ASSERT_EQ(vec.w, vec[3]); + vec[3] = rand(); + ASSERT_EQ(vec.w, vec[3]); +} + +int main(int argc, char **argv) +{ + testing::InitGoogleTest(&argc, argv); + srand(time(nullptr)); + return RUN_ALL_TESTS(); +} -- cgit