aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vector4
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-18 19:57:29 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-18 20:06:42 +0100
commitcb23db34b8f7ce8fec4733cf40176305ad124dc4 (patch)
treea41cc105aa7da17f43f23343e7ef8f06faf1676b /tests/vector4
parent19817238cdca4bc8471fdfaa61149f098fc6fc1f (diff)
downloadYAGE-cb23db34b8f7ce8fec4733cf40176305ad124dc4.tar.gz
YAGE-cb23db34b8f7ce8fec4733cf40176305ad124dc4.zip
Renaming tests and improving travis file
Diffstat (limited to 'tests/vector4')
-rw-r--r--tests/vector4/test.cpp67
1 files changed, 0 insertions, 67 deletions
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 <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#include <gtest/gtest.h>
-#include <yage/yage.h>
-
-#include <cstdlib>
-#include <ctime>
-
-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();
-}