From cb23db34b8f7ce8fec4733cf40176305ad124dc4 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 18 May 2018 19:57:29 +0100 Subject: Renaming tests and improving travis file --- tests/vector4/test.cpp | 67 -------------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 tests/vector4/test.cpp (limited to 'tests/vector4') diff --git a/tests/vector4/test.cpp b/tests/vector4/test.cpp deleted file mode 100644 index 3705e86f..00000000 --- a/tests/vector4/test.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/** --------------------------------------------------------------------------- - * @file: test.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